diff --git a/INSTALL.rst b/INSTALL.rst
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -11,7 +11,7 @@
 
 From sources
 ------------
-You can install adblock2privoxy from sources if there is no binary package for your system.
+You can build and run adblock2privoxy from sources if there is no binary package for your system.
 
 1. Ensure you have Haskell compiler and Cabal
 
@@ -19,7 +19,11 @@
 2. Run::
 
 	stack setup
-	stack install adblock2privoxy
+	stack unpack adblock2privoxy
+	cd adblock2privoxy-*
+	stack build
+	stack exec adblock2privoxy -- [YOUR ARGS]
+	#for example: stack exec adblock2privoxy -- -p /etc/privoxy -d example.com https://easylist-downloads.adblockplus.org/easylist.txt
 
 Packaging
 ---------
diff --git a/adblock2privoxy.cabal b/adblock2privoxy.cabal
--- a/adblock2privoxy.cabal
+++ b/adblock2privoxy.cabal
@@ -1,5 +1,5 @@
 name:                adblock2privoxy
-version:             1.4.0
+version:             1.4.1
 cabal-version:       >= 1.10
 build-type:          Simple
 tested-with:
@@ -103,4 +103,4 @@
   type:      git
   location:  ​http://projects.zubr.me/adblock2privoxy.git
   subdir:    adblock2privoxy
-  tag:       1.4.0
+  tag:       1.4.1
diff --git a/distribution/debbuild/DEBIAN/control b/distribution/debbuild/DEBIAN/control
--- a/distribution/debbuild/DEBIAN/control
+++ b/distribution/debbuild/DEBIAN/control
@@ -1,5 +1,5 @@
 Package:         adblock2privoxy
-Version:         1.4.0
+Version:         1.4.1
 Depends:         libgmp10
 Architecture:    #ARCH#
 Maintainer:      Alexey Zubritskiy <adblock2privoxy@zubr.me>
diff --git a/distribution/makeDeb.sh b/distribution/makeDeb.sh
--- a/distribution/makeDeb.sh
+++ b/distribution/makeDeb.sh
@@ -40,7 +40,8 @@
 dpkg-deb -b distribution/debbuild $initialDir/result
 cd  $initialDir/result
 echo "rename result"
-find . -name '*.deb' -exec sh -c 'mv "$0" "${0%.deb}.debian${cat /etc/debian_version}.deb"' {} \;
+version=${cat /etc/debian_version}
+find . -name '*.deb' -exec sh -c 'mv "$0" "${0%.deb}.debian$version.deb"' {} \;
 
 echo "Build is done."
 
diff --git a/distribution/rpmbuild/SPECS/adblock2privoxy.spec b/distribution/rpmbuild/SPECS/adblock2privoxy.spec
--- a/distribution/rpmbuild/SPECS/adblock2privoxy.spec
+++ b/distribution/rpmbuild/SPECS/adblock2privoxy.spec
@@ -1,11 +1,11 @@
 Name:    adblock2privoxy
-Version: 1.4.0
+Version: 1.4.1
 Release: 1%{?dist}
 Summary: Convert adblock config files to privoxy format
 
 License: GPL-3
 URL:     https://projects.zubr.me/wiki/adblock2privoxy
-Source0: http://hackage.haskell.org/package/adblock2privoxy-1.4.0/adblock2privoxy-1.4.0.tar.gz
+Source0: http://hackage.haskell.org/package/adblock2privoxy-1.4.1/adblock2privoxy-1.4.1.tar.gz
 Vendor:  Alexey Zubritskiy <adblock2privoxy@zubr.me>
 Group:   Web
 
@@ -65,5 +65,5 @@
 
 
 %changelog
-* Thu Dec 24 2015 Alexey Zubritskiy <adblock2privoxy@zubr.me> - 1.4.0
-- Rpm release for version 1.4.0 (generated from cabal file)
+* Wed Dec 30 2015 Alexey Zubritskiy <adblock2privoxy@zubr.me> - 1.4.1
+- Rpm release for version 1.4.1 (generated from cabal file)
