wok view gitmail/receipt @ rev 501

Up: syslinux syslinux-extra 3.62
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 26 07:22:04 2008 +0000 (2008-03-26)
parents eb4e6a1af180
children 3d99ecce2d4b
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 DEPENDS="gtk+"
10 WEB_SITE="http://gitmail.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
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 }