diff options
author | Luca Falavigna <dktrkranz@ubuntu.com> | 2009-08-01 20:33:16 +0200 |
---|---|---|
committer | Luca Falavigna <dktrkranz@ubuntu.com> | 2009-08-01 20:33:16 +0200 |
commit | 4efcdb8b1923e371670e62ae54432b4ac57d7219 (patch) | |
tree | 4c1f93edb4383ea6348cc1065630b1b7c40949ea /debian/rules | |
parent | 2006415df1e8ef91207fe755a9cac1104035692a (diff) |
Switch to debhelper 7
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 62 |
1 files changed, 7 insertions, 55 deletions
diff --git a/debian/rules b/debian/rules index a20c7b6..919f8c0 100755 --- a/debian/rules +++ b/debian/rules @@ -1,60 +1,12 @@ #!/usr/bin/make -f -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 +%: + dh --with quilt $@ -include /usr/share/quilt/quilt.make +clean: + rm -fr build + dh --with quilt $@ -configure: configure-stamp -configure-stamp: - dh_testdir - touch configure-stamp +override_dh_auto_install: + dh_auto_install -- --no-version-script --standalone-lib --no-install-man -build: patch configure-stamp build-stamp -build-stamp: - dh_testdir - python setup.py build - touch build-stamp - -clean: unpatch - dh_testdir - dh_testroot - python setup.py clean - rm -f build-stamp configure-stamp - rm -rf build/ - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - python setup.py install --root=`pwd`/debian/scons --no-compile --no-install-man --no-version-script --standalone-lib - rm -rf debian/scons/usr/man - -# Build architecture-independent files here. -binary-indep: build install - dh_testdir - dh_testroot - dh_installdocs - dh_pysupport - dh_installman - dh_installchangelogs CHANGES.txt - dh_link - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -# Build architecture-dependent files here. -binary-arch: build install - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure |