wok view fetchmail/receipt @ rev 23234

updated net-snmp and net-snmp-dev (5.6.1 -> 5.8)
author Hans-G?nter Theisgen
date Tue Mar 24 14:26:07 2020 +0100 (2020-03-24)
parents d741df010f45
children 640a2eba2511
line source
1 # SliTaz package receipt.
3 PACKAGE="fetchmail"
4 VERSION="6.4.1"
5 CATEGORY="network"
6 TAGS="email"
7 SHORT_DESC="Mail retrieval and forwarding utility."
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.fetchmail.info/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
17 DEPENDS="openssl"
18 BUILD_DEPENDS="openssl-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --with-ssl \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }