diff -u ala-1.0b/debian/rules ala-1.0b/debian/rules --- ala-1.0b/debian/rules +++ ala-1.0b/debian/rules @@ -56,6 +56,14 @@ dh_clean +install: build + dh_clean + dh_installdirs + + # Add here commands to compile the package. + ./configure --prefix=$(CURDIR)/debian/ala/usr + $(MAKE) install + # Build architecture-independent files here. binary-indep: install diff -u ala-1.0b/debian/changelog ala-1.0b/debian/changelog --- ala-1.0b/debian/changelog +++ ala-1.0b/debian/changelog @@ -1,3 +1,9 @@ +ala (1.0b-1ubuntu2) jaunty; urgency=low + + * Packaging fix + + -- Martin Eve Sun, 18 Oct 2009 09:33:32 +0100 + ala (1.0b-1ubuntu1) jaunty; urgency=low * Initial release (Closes: #nnnn) only in patch2: unchanged: --- ala-1.0b.orig/config.make +++ ala-1.0b/config.make @@ -1,7 +1,7 @@ -prefix=/usr/local -libdir=/usr/local/lib -bindir=/usr/local/bin -datadir=/usr/local/share +prefix=/usr +libdir=/usr/lib +bindir=/usr/bin +datadir=/usr/share RUNTIME=mono ASSEMBLY_VERSION=0.1.0.0 VERSION=0.1 only in patch2: unchanged: --- ala-1.0b.orig/ala/ala +++ ala-1.0b/ala/ala @@ -1,3 +1,3 @@ #!/bin/sh -exec mono "/usr/local/lib/ala/ala.exe" "$@" +exec mono "/usr/lib/ala/ala.exe" "$@"