debian/rules: small improvements
authorWall <wall@gmail.com>
Thu, 26 Feb 2009 21:43:18 +0000 (21:43 +0000)
committerWall <wall@gmail.com>
Thu, 26 Feb 2009 21:43:18 +0000 (21:43 +0000)
debian/rules

index f959cfa..fa35cde 100755 (executable)
@@ -3,21 +3,20 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-build: build-stamp
+PACKAGE=findit
 
-build-stamp:
+build:
        dh_testdir
 
        # Add here commands to compile the package.
        mkdir -p $(CURDIR)/po/ru/
-       msgfmt $(CURDIR)/po/ru.po -o $(CURDIR)/po/ru/findit.mo
+       msgfmt $(CURDIR)/po/ru.po -o $(CURDIR)/po/ru/$(PACKAGE).mo
        python setup.py build
        touch $@
 
 clean:
        dh_testdir
        dh_testroot
-       rm -f build-stamp
        rm -rf $(CURDIR)/po/ru
 
        # Add here commands to clean up after the build process.
@@ -31,7 +30,7 @@ install: build
        dh_clean -k 
 
        # Add here commands to install the package into debian/findit
-       python setup.py install --root $(CURDIR)/debian/findit
+       python setup.py install --root $(CURDIR)/debian/$(PACKAGE)
 
 # Build architecture-independent files here.
 binary-indep: build install