wok annotate re-alpine/receipt @ rev 21845

updated rox packages (2.8 -> 2.11)
author Hans-G?nter Theisgen
date Sun Sep 15 11:06:31 2019 +0100 (2019-09-15)
parents 600aaedb561d
children e919c5a2742d
rev   line source
pascal@14379 1 # SliTaz package receipt.
pascal@14379 2
pascal@14379 3 PACKAGE="re-alpine"
pascal@14379 4 VERSION="2.03"
pascal@14379 5 CATEGORY="network"
pascal@14379 6 SHORT_DESC="Re-alpine is the continuation of Alpine (a text-based email client)."
pascal@14379 7 MAINTAINER="paul@slitaz.org"
pascal@15590 8 LICENSE="Apache"
pascal@14379 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/re-alpine/"
pascal@14379 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@14379 12 TAGS="mail client"
pascal@14379 13
pascal@15590 14 DEPENDS="libssl pam libldap libsasl ncurses libkrb5 libcomerr3"
pascal@15590 15 BUILD_DEPENDS="openssl-dev pam-dev openldap-dev cyrus-sasl-dev libldap krb5-dev"
pascal@15590 16
pascal@14379 17 # Rules to configure and make the package.
pascal@14379 18 compile_rules()
pascal@14379 19 {
pascal@14379 20 cd $src
pascal@14381 21 touch libtoolT # configure wan't to remove it...
pascal@14379 22 ./configure \
pascal@14379 23 --prefix=/usr \
pascal@14379 24 --mandir=/usr/share/man \
pascal@14379 25 --with-ssl-dir=/usr \
pascal@14379 26 $CONFIGURE_ARGS &&
pascal@14379 27 make && make install
pascal@14379 28 }
pascal@14379 29
pascal@14379 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14379 31 genpkg_rules()
pascal@14379 32 {
pascal@14379 33 mkdir -p $fs/usr
pascal@14379 34 cp -a $install/usr/bin $fs/usr
pascal@14379 35 }
pascal@14379 36