wok annotate fetchmail/receipt @ rev 18470

syslinux: remove Deutsch Schweiz, Japanese & Turkce latin5 from boot menu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 03 15:13:46 2015 +0200 (2015-10-03)
parents 7896f0694ef6
children c86e41198e76
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"
erjo@3669 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"
erjo@3669 10 WEB_SITE="http://fetchmail.berlios.de/"
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