1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
binaries := $(shell dh_listpackages)
%:
dh $@
override_dh_autoreconf:
mkdir -p debian/tmp-path
ifneq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
ln -fns /bin/true debian/tmp-path/gtkdocize
endif
env NOCONFIGURE=1 PATH=$(CURDIR)/debian/tmp-path:$(PATH) dh_autoreconf ./autogen.sh
configure_options = \
--enable-installed-tests \
--with-avahi \
--with-curl \
--with-dracut \
--with-grub2 \
--with-grub2-mkconfig-path=/usr/sbin/grub-mkconfig \
--with-libarchive \
--with-libsystemd \
--with-libmount \
--with-modern-grub \
--with-soup3 \
--with-selinux \
--with-systemdsystemgeneratordir=/usr/lib/systemd/system-generators \
--with-systemdsystemunitdir=/usr/lib/systemd/system \
--without-composefs \
--without-smack \
$(NULL)
ifneq ($(filter alpha armel hppa ia64 m68k sh4 sparc64 x32,$(DEB_HOST_ARCH)),)
configure_options += ac_cv_path_GJS=
endif
ifneq ($(filter libostree-doc,$(binaries)),)
configure_options += --enable-gtk-doc
else
configure_options += --disable-gtk-doc
endif
ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
configure_options += --enable-man
else
configure_options += --disable-man
endif
override_dh_auto_configure:
dh_auto_configure -- $(configure_options)
override_dh_auto_build:
# The upstream build system overrides this to gcc as a way to avoid
# passing unsupported options to clang, but that's wrong for
# cross-builds
dh_auto_build -- INTROSPECTION_SCANNER_ENV="CC=$(DEB_HOST_GNU_TYPE)-gcc"
override_dh_auto_test-arch:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
chmod +x tests/test-pull-bareuseronly.sh
debian/test.sh
endif
override_dh_auto_test-indep:
:
override_dh_auto_install:
dh_auto_install
ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
# docbook-xsl capitalizes the whole heading, including the macro
# used to represent a single quote... https://bugs.debian.org/821235
sed -i -e 's,\*(AQ,*(Aq,g' \
debian/tmp/usr/share/man/man1/ostree-remote.1 \
debian/tmp/usr/share/man/man1/ostree-static-delta.1 \
$(NULL)
endif
override_dh_install:
rm -f debian/tmp/usr/lib/*/*.la
rm -f debian/tmp/usr/libexec/installed-tests/libostree/*.la
:
dh_install
override_dh_fixperms:
dh_fixperms -Xusr/libexec/installed-tests
ifneq ($(filter %-tests,$(binaries)),)
# debhelper >= 13.4 makes all of /usr/libexec executable, which is not
# quite right for installed-tests
chmod --recursive --changes a+rX,u+w,og-w debian/*-tests/usr/libexec/installed-tests
endif
override_dh_installsystemd:
dh_installsystemd --no-start
|