1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
include /usr/share/dpkg/default.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_configure-arch:
./tools/gen-deps.sh > package/deps.mak
dh_auto_configure -- --dynlibdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--includedir=\$${prefix}/include/$(DEB_HOST_MULTIARCH) \
--bindir=\$${prefix}/lib/execline/bin \
--with-sysdeps=/usr/lib/$(DEB_HOST_MULTIARCH)/skalibs/sysdeps \
--enable-absolute-paths \
--enable-shared --disable-allstatic
override_dh_auto_configure-indep:
override_dh_auto_build-indep:
override_dh_auto_install-indep:
mkdir -p debian/tmp/usr/share/doc/execline
cp -aT doc debian/tmp/usr/share/doc/execline
|