wok annotate fetchmail/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents f2f82c4052c8
children 57dede92d7fe
rev   line source
erjo@3669 1 # SliTaz package receipt.
erjo@3669 2
erjo@3669 3 PACKAGE="fetchmail"
slaxemulator@11105 4 VERSION="6.3.21"
erjo@3669 5 CATEGORY="network"
erjo@3669 6 SHORT_DESC="Mail retrieval and forwarding utility "
erjo@3669 7 MAINTAINER="erjo@slitaz.org"
erjo@3669 8 DEPENDS="openssl"
erjo@3669 9 BUILD_DEPENDS="openssl-dev"
erjo@3669 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@3669 11 WEB_SITE="http://fetchmail.berlios.de/"
slaxemulator@11105 12 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL"
erjo@3669 13 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
jozee@4936 14 TAGS="email"
erjo@3669 15
erjo@3669 16 # Rules to configure and make the package.
erjo@3669 17 compile_rules()
erjo@3669 18 {
erjo@3669 19 cd $src
erjo@3669 20 ./configure \
erjo@3669 21 $CONFIGURE_ARGS &&
slaxemulator@11105 22 make && make DESTDIR=$DESTDIR install
erjo@3669 23 }
erjo@3669 24
erjo@3669 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3669 26 genpkg_rules()
erjo@3669 27 {
erjo@3669 28 mkdir -p $fs/usr
erjo@3669 29 cp -a $_pkg/usr/bin $fs/usr
erjo@3669 30 }
erjo@3669 31