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
|
#!/usr/bin/make -f
SCORES = var/games/kobo-deluxe/scores
PACKAGE = $(firstword $(shell dh_listpackages))
DATAPKG = $(PACKAGE)-data
TMP = $(CURDIR)/debian/tmp
PKGDIR = $(CURDIR)/debian/$(PACKAGE)
DEB_BUILD_MAINT_OPTIONS=hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@
override_dh_auto_configure:
ln -sf /usr/share/misc/config.sub
ln -sf /usr/share/misc/config.guess
aclocal
automake
autoconf
dh_auto_configure -- --bindir=/usr/games --sharedstatedir=/usr/share
override_dh_auto_build:
$(MAKE) kobo_scoredir=/$(SCORES)
override_dh_auto_install:
mkdir -p $(TMP)/$(SCORES)
$(MAKE) DESTDIR=$(TMP) kobo_scoredir=/$(SCORES) install
rm -rfv $(TMP)/usr/games/kobo-deluxe \
$(TMP)/usr/share/kobo-deluxe/scores
override_dh_fixperms-arch:
dh_fixperms -a
chown root.games $(PKGDIR)/usr/games/kobodl \
$(PKGDIR)/$(SCORES)
chmod g+s $(PKGDIR)/usr/games/kobodl
chmod 2775 $(PKGDIR)/$(SCORES)
|