wok annotate fetchmail/receipt @ rev 21074

updated jasper again (1.900.1 -> 2.0.16)
author Hans-G?nter Theisgen
date Thu Mar 14 17:22:53 2019 +0100 (2019-03-14)
parents c86e41198e76
children d741df010f45
rev   line source
erjo@3669 1 # SliTaz package receipt.
erjo@3669 2
erjo@3669 3 PACKAGE="fetchmail"
erjo@15708 4 VERSION="6.3.26"
erjo@3669 5 CATEGORY="network"
al@20422 6 SHORT_DESC="Mail retrieval and forwarding utility"
erjo@3669 7 MAINTAINER="erjo@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
erjo@3669 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20673 10 WEB_SITE="http://www.fetchmail.info/"
slaxemulator@11105 11 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL"
erjo@3669 12 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
jozee@4936 13 TAGS="email"
erjo@3669 14
pascal@15002 15 DEPENDS="openssl"
pascal@15002 16 BUILD_DEPENDS="openssl-dev"
pascal@15002 17
erjo@3669 18 # Rules to configure and make the package.
erjo@3669 19 compile_rules()
erjo@3669 20 {
erjo@3669 21 cd $src
erjo@15708 22 ./configure --with-ssl \
erjo@3669 23 $CONFIGURE_ARGS &&
slaxemulator@11105 24 make && make DESTDIR=$DESTDIR install
erjo@3669 25 }
erjo@3669 26
erjo@3669 27 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3669 28 genpkg_rules()
erjo@3669 29 {
erjo@3669 30 mkdir -p $fs/usr
pascal@15002 31 cp -a $install/usr/bin $fs/usr
erjo@3669 32 }
erjo@3669 33