wok view gitmail/receipt @ rev 3511

change ohci_hcd for full hard disk install on usb disk
author Rohit Joshi <jozee@slitaz.org>
date Fri Jun 19 15:56:06 2009 +0000 (2009-06-19)
parents 52dc4b48ed81
children 62f6142d9fb3
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+ xorg-libXdamage"
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 }