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
|
#!/usr/bin/make -f
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
# Ensure at build time that the library has no dependencies on undefined
# symbols, and speed up loading.
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,-O1
%:
dh ${@}
override_dh_auto_configure:
dh_auto_configure -- \
SYSTEMD_ASK_PASSWORD_AGENT=/bin/systemd-tty-ask-password-agent \
--disable-silent-rules \
--prefix=/usr \
--localstatedir=/var \
--with-runtimedir=/run \
--enable-pango \
--enable-systemd-integration \
--enable-static \
--enable-tracing \
--with-background-color=0x005a8a \
--with-logo=/usr/share/plymouth/debian-logo.png \
--with-release-file=/etc/os-release \
--without-system-root-install \
--without-rhgb-compat-link
override_dh_auto_install:
dh_auto_install
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/plymouth/*.la
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/plymouth/*/*.la
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/plymouth/*.a
rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/plymouth/*/*.a
override_dh_install:
dh_install
# Adding other debian specific files
install -D -m 0644 debian/local/debian-logo.png debian/plymouth/usr/share/plymouth/debian-logo.png
install -D -m 0755 debian/local/plymouth-update-initrd debian/plymouth/usr/libexec/plymouth/plymouth-update-initrd
install -D -m 0644 debian/local/plymouth.lsb debian/plymouth/lib/lsb/init-functions.d/99-plymouth
# Adding apport file (from Ubuntu)
mkdir -p debian/plymouth/usr/share/apport/package-hooks
install -m 644 debian/source_plymouth.apport debian/plymouth/usr/share/apport/package-hooks/source_plymouth.py
# Disable dh_installinitramfs as we are managing this ourself
override_dh_installinitramfs:
# Adding initramfs-tools integration
install -D -m 0755 debian/local/plymouth.hook debian/plymouth/usr/share/initramfs-tools/hooks/plymouth
sed -i -e 's|@DEB_HOST_MULTIARCH@|$(DEB_HOST_MULTIARCH)|g' debian/plymouth/usr/share/initramfs-tools/hooks/plymouth
install -D -m 0755 debian/local/plymouth.init-premount debian/plymouth/usr/share/initramfs-tools/scripts/init-premount/plymouth
install -D -m 0755 debian/local/plymouth.init-bottom debian/plymouth/usr/share/initramfs-tools/scripts/init-bottom/plymouth
install -D -m 0755 debian/local/plymouth.panic debian/plymouth/usr/share/initramfs-tools/scripts/panic/plymouth
override_dh_installsystemd:
dh_installsystemd --no-start --no-restart-after-upgrade
override_dh_autoreconf:
dh_autoreconf --as-needed
override_dh_installinit:
dh_installinit --no-start
dh_installinit --no-start --name=plymouth-log
override_dh_makeshlibs:
dh_makeshlibs -Xusr/lib/$(DEB_HOST_MULTIARCH)/plymouth
|