wok view gitmail/receipt @ rev 101

Renamed cdparanoia to cdparanoia-III
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 04 16:50:21 2008 +0100 (2008-01-04)
parents
children 4959e5789caa
line source
1 # SliTaz package receipt.
3 PACKAGE="gitmail"
4 VERSION="0.4"
5 CATEGORY="extra"
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"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd GhostInTheMail-$VERSION
16 ./configure --prefix=/usr $CONFIGURE_ARGS
17 make
18 make DESTDIR=$PWD/_pkg \
19 gitmaildocdir=/usr/share/doc/GhostInTheMail \
20 install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a GhostInTheMail-$VERSION/_pkg/usr/bin $fs/usr
28 strip -s $fs/usr/bin/*
29 }