1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@ --with tex
override_dh_auto_configure:
./configure --prefix=/usr --sysconfdir=/etc \
--enable-ttf --with-ttfdir=/usr/share/fonts/truetype/arundina \
--enable-latex --with-texmfdir=/usr/share/texmf
override_dh_auto_build:
dh_auto_build --max-parallel=1
override_dh_installtex:
dh_installtex -platex-fonts-sipa-arundina
binary-arch:
# We have nothing to do.
|