wok view fetchmail/receipt @ rev 14173

cookutils: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 09 09:24:47 2013 +0100 (2013-03-09)
parents 09463585caed
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="fetchmail"
4 VERSION="6.3.22"
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 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
14 TAGS="email"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }