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
|
#!/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 2737 2005-03-07 12:15:26Z netsnipe-guest $
# ====================================================================
# CDBS classes & rules
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/gnome.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-gpgme \
--with-gss --with-ldap --with-sqlite --with-ssl
DEB_CONFIGURE_SCRIPT_ENV := GTK_UPDATE_ICON_CACHE=/bin/true \
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
# 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
|