wok view pan/receipt @ rev 3213

pan: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 28 11:47:11 2009 +0200 (2009-05-28)
parents 0a3ea4d05d07
children 9aa71590a018
line source
1 # SliTaz package receipt.
3 PACKAGE="pan"
4 VERSION="0.133"
5 CATEGORY="network"
6 SHORT_DESC="pan is a usenet newsreader"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="pcre gmime gtkspell"
9 BUILD_DEPENDS="pcre-dev gmime gmime-dev gtkspell-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://pan.rebelbase.com"
12 WGET_URL="$WEB_SITE/download/releases/$VERSION/source/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/applications $fs/usr/share
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
33 }