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
|
%:
dh $@ --with autoreconf --sourcedirectory=synfig-core
execute_after_dh_autoreconf:
cd synfig-core && intltoolize --force --copy
override_dh_auto_configure:
dh_auto_configure -- \
--with-boost-libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
--sysconfdir=/etc/synfig \
--enable-debug=half \
--with-imagemagick \
--without-included-ltdl
override_dh_auto_install:
dh_auto_install --destdir=$(CURDIR)/debian/tmp
$(RM) -rv $(CURDIR)/debian/tmp/usr/share/locale/zh-Hant
override_dh_makeshlibs:
dh_makeshlibs -V
override_dh_compress:
dh_compress --exclude=.sifz
|