wok annotate re-alpine/receipt @ rev 16007

Add go mode for emacs (1.2.1)
author Dominique Corbex <domcox@slitaz.org>
date Tue Mar 04 13:27:14 2014 +0100 (2014-03-04)
parents bf53d191d5bd
children 86790a278e70
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@14379 10 WEB_SITE="http://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