wok annotate re-alpine/receipt @ rev 15149
php: fix post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 13:25:02 2013 +0000 (2013-08-15) |
parents | 33e84bccec26 |
children | 600aaedb561d |
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@14379 | 8 DEPENDS="libssl pam libldap libsasl ncurses libkrb5 libcomerr3" |
pascal@14379 | 9 BUILD_DEPENDS="openssl-dev pam-dev openldap-dev cyrus-sasl-dev libldap krb5-dev" |
pascal@14379 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@14379 | 11 WEB_SITE="http://sourceforge.net/projects/re-alpine/" |
pascal@14379 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@14379 | 13 TAGS="mail client" |
pascal@14379 | 14 |
pascal@14379 | 15 # Rules to configure and make the package. |
pascal@14379 | 16 compile_rules() |
pascal@14379 | 17 { |
pascal@14379 | 18 cd $src |
pascal@14381 | 19 touch libtoolT # configure wan't to remove it... |
pascal@14379 | 20 ./configure \ |
pascal@14379 | 21 --prefix=/usr \ |
pascal@14379 | 22 --mandir=/usr/share/man \ |
pascal@14379 | 23 --with-ssl-dir=/usr \ |
pascal@14379 | 24 $CONFIGURE_ARGS && |
pascal@14379 | 25 make && make install |
pascal@14379 | 26 } |
pascal@14379 | 27 |
pascal@14379 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14379 | 29 genpkg_rules() |
pascal@14379 | 30 { |
pascal@14379 | 31 mkdir -p $fs/usr |
pascal@14379 | 32 cp -a $install/usr/bin $fs/usr |
pascal@14379 | 33 } |
pascal@14379 | 34 |