Update of /cvsroot/wisp/wisp/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv24722/debian
Modified Files:
rules
Log Message:
minor reformatting
Index: rules
===================================================================
RCS file: /cvsroot/wisp/wisp/debian/rules,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- rules 12 Apr 2003 12:34:29 -0000 1.11
+++ rules 12 Apr 2003 13:28:15 -0000 1.12
@@ -3,6 +3,7 @@
#### debian/rules - make(1) script to package Wisp for Debian
#
# Copyleft © 2002 by Andres Soolo (di...@us...)
+# Copyleft © 2003 by Martin Paljak (pi...@us...)
# This file is licensed under the GNU GPL v2. If you
# don't know what that means, please do read the GPL.
#
@@ -24,7 +25,6 @@
-$(MAKE) -i distclean
rm -f build
-
install: build
dh_clean
dh_installdirs
@@ -32,29 +32,21 @@
mandir=$(CURDIR)/debian/tmp/usr/share/man \
infodir=$(CURDIR)/debian/tmp/usr/share/info \
install
-
binary: install
dh_testdir
dh_testroot
dh_strip
dh_installdocs
- dh_installchangelogs
+ dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
- dh_md5sums
+ dh_md5sums
dh_builddeb
-
-.PHONY: binary clean install
-
-
-# XXX
-
-.PHONY: copyright
copyright:
test -f debian/copyright || ( \
perl -npe 'exit if /full text of GPL/;' < COPYING \
@@ -65,3 +57,4 @@
echo \'/usr/share/common-licenses/GPL\'; \
) >> debian/copyright )
+.PHONY: binary clean install copyright
|