wok view fetchmail/receipt @ rev 22629

updated darkstat (3.0.713 -> 3.0.719)
author Hans-G?nter Theisgen
date Mon Jan 13 07:59:55 2020 +0100 (2020-01-13)
parents e3f377fbc5f0
children 63fe29e9a1a3
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="https://www.fetchmail.info/"
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 }