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
|
#!/usr/bin/make -f
# ====================================================================
# debian/rules for Balsa
# Common Debian Build System: (C) 2002 Colin Walters
#
# Author: Andrew Lau <netsnipe@users.sourceforge.net>
# $Id: rules 15686 2008-04-18 11:20:14Z joss $
# ====================================================================
# CDBS classes & rules
include /usr/share/cdbs/1/class/gnome.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
# Compile options
DEB_CONFIGURE_EXTRA_FLAGS := --disable-smime --with-compface --with-gpgme \
--with-gss --with-gtkspell --with-ldap --with-sqlite --with-ssl \
--with-gtksourceview --enable-extra-mimeicons
DEB_CONFIGURE_SCRIPT_ENV += GTK_UPDATE_ICON_CACHE=/bin/true
# Debhelper arguments
DEB_DH_INSTALL_ARGS := debian/balsa.xpm \
usr/share/pixmaps/
DEB_DH_LINK_ARGS := usr/share/man/man1/balsa.1 \
usr/share/man/man1/balsa-ab.1
# Record build-time version information
binary-post-install/balsa::
/usr/bin/dh_buildinfo
|