diff options
author | Ola Nordmann <olapc@yahoo.no> | 2001-09-19 09:04:53 +0000 |
---|---|---|
committer | Ola Nordmann <olapc@yahoo.no> | 2001-09-19 09:04:53 +0000 |
commit | 307f3a32e64ddd4de7b3e07f38d004c7de8d4a05 (patch) | |
tree | f46e60302a35180c5457ddb5f3cb014392176040 /debian/rules | |
parent | 4f1dd9e8743b08c5f294278ceb5509ce37a34ba3 (diff) | |
download | java-common-debian/0.7.tar.gz |
Updated maintainer and fixed some other things.debian/0.7
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 58 |
1 files changed, 30 insertions, 28 deletions
diff --git a/debian/rules b/debian/rules index afc7579..8304c7d 100755 --- a/debian/rules +++ b/debian/rules @@ -6,6 +6,8 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +export DH_COMPAT=3 + build: build-stamp build-stamp: dh_testdir @@ -33,39 +35,39 @@ install-stamp: build-stamp # Add here commands to install the package into debian/tmp. dh_installdocs - $(MAKE) install DESTDIR=`pwd`/debian/tmp + $(MAKE) install DESTDIR=$(CURDIR)/debian/java-common touch install-stamp # Build architecture-independent files here. +# Pass -i to all debhelper commands in this target to reduce clutter. binary-indep: build install + dh_testdir -i + dh_testroot -i +# dh_installdebconf -i + dh_installdocs -i + dh_installexamples -i examples/* + dh_installmenu -i +# dh_installlogrotate -i +# dh_installemacsen -i +# dh_installpam -i +# dh_installmime -i +# dh_installinit -i +# dh_installcron -i +# dh_installman -i +# dh_installinfo -i +# dh_undocumented -i + dh_installchangelogs -i + dh_link -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i +# dh_perl -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i -# Build architecture-dependent files here. -binary-arch: build install -# dh_testversion - dh_testdir - dh_testroot - dh_installexamples examples/* - dh_installmenu -# dh_installemacsen -# dh_installinit - dh_installcron -# dh_installmanpages -# dh_undocumented - dh_installchangelogs -# dh_strip - dh_compress - dh_fixperms - dh_suidregister - dh_installdeb -# dh_shlibdeps - dh_gencontrol -# dh_makeshlibs - dh_md5sums dh_builddeb -source diff: - @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary +binary: binary-indep +.PHONY: build clean binary-indep binary install configure |