wok view fetchmail/receipt @ rev 4071

Add syasokoban
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 12 22:38:05 2009 +0200 (2009-09-12)
parents
children fb8aceda65ff
line source
1 # SliTaz package receipt.
3 PACKAGE="fetchmail"
4 VERSION="6.3.10"
5 CATEGORY="network"
6 SHORT_DESC="Mail retrieval and forwarding utility "
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="openssl"
9 BUILD_DEPENDS="openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://fetchmail.berlios.de/"
12 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL
13 http://download2.berlios.de/fetchmail/$TARBALL"
14 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }