wok annotate alpine/receipt @ rev 2491

a*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 22:17:07 2009 +0000 (2009-03-15)
parents 544b621b4f41
children 2bbc0ef3f1d2
rev   line source
paul@2337 1 # SliTaz package receipt.
paul@2337 2
paul@2337 3 PACKAGE="alpine"
paul@2337 4 VERSION="2.00"
paul@2337 5 CATEGORY="network"
paul@2337 6 SHORT_DESC="Fast, easy to use email client."
paul@2337 7 MAINTAINER="paul@slitaz.org"
pascal@2491 8 DEPENDS="openssl pam libldap cyrus-sasl ncurses"
paul@2342 9 BUILD_DEPENDS="openssl-dev pam-dev openldap-dev cyrus-sasl-dev libldap"
paul@2337 10 TARBALL="$PACKAGE.tar.gz"
paul@2337 11 WEB_SITE="http://www.washington.edu/alpine/"
paul@2337 12 WGET_URL="ftp://ftp.cac.washington.edu/alpine/$TARBALL"
paul@2337 13
paul@2337 14 # Rules to configure and make the package.
paul@2337 15 compile_rules()
paul@2337 16 {
paul@2337 17 cd $src
paul@2337 18 ./configure \
paul@2337 19 --prefix=/usr \
paul@2337 20 --infodir=/usr/share/info \
paul@2337 21 --mandir=/usr/share/man \
paul@2337 22 $CONFIGURE_ARGS &&
paul@2337 23 make && make DESTDIR=$PWD/_pkg install
paul@2337 24 }
paul@2337 25
paul@2337 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2337 27 genpkg_rules()
paul@2337 28 {
paul@2337 29 mkdir -p $fs/usr
paul@2337 30 cp -a $_pkg/usr/bin $fs/usr
paul@2337 31 }