1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
BUILD_DATE = $(shell date --date="$$(dpkg-parsechangelog -SDate)" +"%Y-%m-%d %H:%M:%S")
export BUILD_DATE
%:
dh $@
override_dh_auto_build:
#dh_auto_build
cd source; ./build_font otf
#cd source; ./build_font -s otf
#cd source; ./build_font -ni otf
#$(MAKE) -f Makefile.ff
#find $(CURDIR) -name '*.ttf' -print0 | xargs -0 debian/scripts/fix-modtime.pe
#echo CURRENTLY USING PRE-BUILT UPSTREAM FONT FILES
override_dh_auto_install:
@echo Do not use install target of upstream Makefile
|