wok view alpine/receipt @ rev 16814

Up pcre and pcre-dev to version 8.35
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jul 10 22:42:36 2014 -0300 (2014-07-10)
parents 617dbdeb6f7e
children d5f9f516b706
line source
1 # SliTaz package receipt.
3 PACKAGE="alpine"
4 VERSION="2.00"
5 CATEGORY="network"
6 SHORT_DESC="Fast, easy to use email client."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="Apache"
9 TARBALL="$PACKAGE.tar.gz"
10 WEB_SITE="http://www.washington.edu/alpine/"
11 WGET_URL="ftp://ftp.cac.washington.edu/alpine/$TARBALL"
12 TAGS="mail client"
13 #HOST_ARCH="i486 arm"
15 DEPENDS="libssl pam ncurses"
16 BUILD_DEPENDS="openssl-dev pam-dev ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --without-tcl \
23 --without-ldap \
24 --without-krb5 \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }
36 post_install()
37 {
38 # link old libldap libraries
39 echo -n "Linking libraries..."
40 cd $1/usr/lib
41 ln -s liblber-2.4.so.2.4.2 liblber-2.3.so.0
42 ln -s libldap-2.4.so.2.4.2 libldap-2.3.so.0
43 status
44 }
46 post_remove()
47 {
48 echo -n "Removing linked libraries..."
49 rm -f /usr/lib/liblber-2.3.so.0
50 rm -f /usr/lib/libldap-2.3.so.0
51 status
52 }