wok annotate fetchmail/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents 57dede92d7fe
children 383d0ea319bb
rev   line source
erjo@3669 1 # SliTaz package receipt.
erjo@3669 2
erjo@3669 3 PACKAGE="fetchmail"
slaxemulator@13678 4 VERSION="6.3.22"
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@3669 22 ./configure \
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