wok view alpine/receipt @ rev 18702

Up ola(0.9.8) (thanks Thomas a.k.a. kult-ex)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Dec 16 12:43:42 2015 +0200 (2015-12-16)
parents cf41f989b6d2
children f0a0b5091b4a
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 cd "$1/usr/lib"
40 ln -s liblber-2.4.so.2.4.2 liblber-2.3.so.0
41 ln -s libldap-2.4.so.2.4.2 libldap-2.3.so.0
42 }
44 post_remove()
45 {
46 rm -f /usr/lib/liblber-2.3.so.0
47 rm -f /usr/lib/libldap-2.3.so.0
48 }