wok view gitmail/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 1ae5963f23df
children 17e313b5b9c1
line source
1 # SliTaz package receipt.
3 PACKAGE="gitmail"
4 VERSION="0.4"
5 CATEGORY="network"
6 SHORT_DESC="Ghost In The Mail is a simple mail client."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gitmail.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ xorg-libXdamage"
14 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lpthread"
21 ./configure --prefix=/usr $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath &&
22 make &&
23 make DESTDIR=$DESTDIR \
24 gitmaildocdir=/usr/share/doc/GhostInTheMail \
25 install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }