wok view fetchmail/receipt @ rev 20223

grub: add ext4 patch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 01 10:11:27 2018 +0100 (2018-03-01)
parents 7896f0694ef6
children c86e41198e76
line source
1 # SliTaz package receipt.
3 PACKAGE="fetchmail"
4 VERSION="6.3.26"
5 CATEGORY="network"
6 SHORT_DESC="Mail retrieval and forwarding utility "
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://fetchmail.berlios.de/"
11 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL"
12 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
13 TAGS="email"
15 DEPENDS="openssl"
16 BUILD_DEPENDS="openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure --with-ssl \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }