summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-30 14:54:34 +0000
committerDavid Robillard <d@drobilla.net>2009-03-30 14:54:34 +0000
commitf5e5a68c2589ca8df17fd7f78fb497a251bcc019 (patch)
tree4353e5981fdab5f362291605b74212b4cc1cd349
parentd909a9f409849dfe4072f2f57fdd2349ca8a0a3c (diff)
downloadlilv-f5e5a68c2589ca8df17fd7f78fb497a251bcc019.tar.gz
lilv-f5e5a68c2589ca8df17fd7f78fb497a251bcc019.tar.bz2
lilv-f5e5a68c2589ca8df17fd7f78fb497a251bcc019.zip
Update Debian stuff a bit (still won't work...)
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1952 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--debian-sid/copyright7
-rwxr-xr-xdebian-sid/rules14
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.