wok view fetchmail/receipt @ rev 23805

xine-lib: update suggested
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 24 07:34:28 2020 +0000 (2020-05-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 }