diff options
Diffstat (limited to 'ubuntu/raring/dependencies/avahi-tqt/debian/rules')
-rwxr-xr-x | ubuntu/raring/dependencies/avahi-tqt/debian/rules | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ubuntu/raring/dependencies/avahi-tqt/debian/rules b/ubuntu/raring/dependencies/avahi-tqt/debian/rules new file mode 100755 index 000000000..ac6ff10f3 --- /dev/null +++ b/ubuntu/raring/dependencies/avahi-tqt/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +# Ensure at build time that the library has no dependencies on undefined +# symbols, and speed up loading. +export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-O1 + +DEB_CONFIGURE_EXTRA_FLAGS += \ + --prefix=/usr \ + --enable-compat-libdns_sd \ + --disable-mono --disable-monodoc \ + --disable-gtk3 \ + --with-systemdsystemunitdir=/lib/systemd/system + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +post-patches:: debian/stamp-bootstrap + +debian/stamp-bootstrap: + ./autogen.sh --prefix=/usr + rm ./ChangeLog + touch debian/stamp-bootstrap |