diff options
-rw-r--r-- | debian-sid/copyright | 7 | ||||
-rwxr-xr-x | debian-sid/rules | 14 |
2 files changed, 11 insertions, 10 deletions
diff --git a/debian-sid/copyright b/debian-sid/copyright index 97ef279..e231395 100644 --- a/debian-sid/copyright +++ b/debian-sid/copyright @@ -1,5 +1,5 @@ This package was debianized by Dave Robillard <dave@drobilla.net> on -Wed, 14 Nov 2007 22:29:49 -0500. +Mon, 30 Mar 2009 10:48:42 -0400 It was downloaded from <http://drobilla.net/software/slv2> @@ -9,7 +9,7 @@ Upstream Author: Copyright: - Copyright (C) 2007 Dave Robillard + Copyright (C) 2009 Dave Robillard License: @@ -30,5 +30,6 @@ License: On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. -The Debian packaging is (C) 2007, Dave Robillard <dave@drobilla.net> and +The Debian packaging is (C) 2009, Dave Robillard <dave@drobilla.net> and is licensed under the GPL, see above. + diff --git a/debian-sid/rules b/debian-sid/rules index 582cdf2..14262a6 100755 --- a/debian-sid/rules +++ b/debian-sid/rules @@ -34,7 +34,7 @@ endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + ./waf configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" build: build-stamp @@ -42,7 +42,7 @@ build-stamp: config.status dh_testdir # Add here commands to compile the package. - $(MAKE) + ./waf touch $@ @@ -52,8 +52,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - $(MAKE) distclean - rm -f config.sub config.guess + ./waf distclean + rm -rf build dh_clean @@ -63,9 +63,9 @@ install: build dh_clean -k dh_installdirs - $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-9 install-exec - $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-9-dev install-data - $(MAKE) DESTDIR=$(CURDIR)/debian/slv2-doc install-man + ./waf DESTDIR=$(CURDIR)/debian/slv2-9 install-exec + ./waf DESTDIR=$(CURDIR)/debian/slv2-9-dev install-data + ./waf DESTDIR=$(CURDIR)/debian/slv2-doc install-man # Build architecture-independent files here. |