1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/make -f
ifneq (,$(filter $(DEB_HOST_ARCH), amd64))
PROGFILE=BinkPlayer64
else
PROGFILE=BinkPlayer
endif
%:
dh $@
override_dh_auto_build:
dh_auto_build
sed -e "s/@PROGFILE@/${PROGFILE}/g" < debian/binkplayer.postinst.in > debian/binkplayer.postinst
|