wok view gitmail/receipt @ rev 203

Category network (internet tools)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 13 13:50:45 2008 +0100 (2008-02-13)
parents 4959e5789caa
children eb4e6a1af180
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://gitmail.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 JWM_MENU='Internet:<Program icon="internet-mail.png" label="Ghost In The Mail">gitmail</Program>'
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd GhostInTheMail-$VERSION
17 ./configure --prefix=/usr $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg \
20 gitmaildocdir=/usr/share/doc/GhostInTheMail \
21 install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a GhostInTheMail-$VERSION/_pkg/usr/bin $fs/usr
29 strip -s $fs/usr/bin/*
30 }