wok view fetchmail/receipt @ rev 22345

tcc, unfs3: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 17 20:40:16 2019 +0100 (2019-11-17)
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 }