wok-undigest annotate re-alpine/receipt @ rev 927

trafshow: tiny edit
author Paul Issott <paul@slitaz.org>
date Sun Feb 24 19:17:30 2013 +0000 (2013-02-24)
parents
children
rev   line source
paul@897 1 # SliTaz package receipt.
paul@897 2
paul@897 3 PACKAGE="re-alpine"
paul@897 4 VERSION="2.03"
paul@897 5 CATEGORY="network"
paul@897 6 SHORT_DESC="Re-alpine is the continuation of Alpine (a text-based email client)."
paul@897 7 MAINTAINER="paul@slitaz.org"
paul@897 8 DEPENDS="libssl pam libldap libsasl ncurses libkrb5 libcomerr3"
paul@897 9 BUILD_DEPENDS="openssl-dev pam-dev openldap-dev cyrus-sasl-dev libldap krb5-dev"
paul@897 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@897 11 WEB_SITE="http://sourceforge.net/projects/re-alpine/"
paul@897 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
paul@897 13 TAGS="mail client"
paul@897 14
paul@897 15 # Rules to configure and make the package.
paul@897 16 compile_rules()
paul@897 17 {
paul@897 18 cd $src
paul@897 19 ./configure \
paul@897 20 --prefix=/usr \
paul@897 21 --mandir=/usr/share/man \
paul@897 22 --with-ssl-dir=/usr \
paul@897 23 $CONFIGURE_ARGS &&
paul@897 24 make && make install
paul@897 25 }
paul@897 26
paul@897 27 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@897 28 genpkg_rules()
paul@897 29 {
paul@897 30 mkdir -p $fs/usr
paul@897 31 cp -a $install/usr/bin $fs/usr
paul@897 32 }
paul@897 33