47 lines
1.7 KiB
Makefile
Executable file
47 lines
1.7 KiB
Makefile
Executable file
#! /usr/bin/make -f
|
|
|
|
ifeq (0,$(shell dpkg-vendor --derives-from Ubuntu; echo $$?))
|
|
KEYRING := ubuntu-keyring
|
|
else ifeq (0,$(shell dpkg-vendor --derives-from Devuan; echo $$?))
|
|
KEYRING := devuan-keyring
|
|
else ifeq (0,$(shell dpkg-vendor --derives-from Tanglu; echo $$?))
|
|
KEYRING := tanglu-archive-keyring
|
|
else
|
|
KEYRING := debian-archive-keyring
|
|
endif
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# need to be root to make devices, so build is done in install target
|
|
override_dh_auto_build:
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_build
|
|
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/debootstrap
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/debootstrap-udeb
|
|
|
|
# remove scripts not needed by d-i
|
|
-rm -f debian/debootstrap-udeb/usr/share/debootstrap/scripts/potato \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/woody \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/sarge \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/warty \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/hoary \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/breezy \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/dapper \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/edgy \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/feisty \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/*.buildd \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/*.fakechroot \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/stable \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/testing \
|
|
debian/debootstrap-udeb/usr/share/debootstrap/scripts/unstable
|
|
|
|
override_dh_gencontrol:
|
|
dh_gencontrol -- -Vkeyring=$(KEYRING)
|
|
|
|
# Specify gzip to mitigate #770217:
|
|
override_dh_builddeb:
|
|
dh_builddeb -pdebootstrap -- -Zgzip
|
|
dh_builddeb -pdebootstrap-udeb -- -Zxz
|