wok view gitmail/receipt @ rev 2381

rt2860sta: remove potential warning for tazpkg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 08 12:57:59 2009 +0000 (2009-03-08)
parents 3d99ecce2d4b
children 8b79c3ee7ac2
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 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev"
11 WEB_SITE="http://gitmail.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd GhostInTheMail-$VERSION
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg \
21 gitmaildocdir=/usr/share/doc/GhostInTheMail \
22 install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a GhostInTheMail-$VERSION/_pkg/usr/bin $fs/usr
30 strip -s $fs/usr/bin/*
31 }