wok view acl/receipt @ rev 13742

fsthost: up 1.4.0 (thanks rev8)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 27 02:52:21 2012 +0000 (2012-12-27)
parents 3f0ba5c96b60
children 164afa784523
line source
1 # SliTaz package receipt.
3 PACKAGE="acl"
4 VERSION="2.2.51"
5 CATEGORY="system-tools"
6 SHORT_DESC="Commands for Manipulating POSIX Access Control Lists."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base attr"
9 BUILD_DEPENDS="autoconf automake m4 libtool gettext attr-dev attr bash"
10 TARBALL="${PACKAGE}-${VERSION}.src.tar.gz"
11 WEB_SITE="http://savannah.nongnu.org/projects/acl/"
12 WGET_URL="http://nongnu.askapache.com/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # Need bash sh to compile
20 mv /bin/sh /bin/sh.bak
21 ln -s /bin/bash /bin/sh
23 # Configure is included in Makefile
24 { make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
25 make install install-lib install-dev DIST_ROOT=$DESTDIR
26 } || { mv -f /bin/sh.bak /bin/sh; return 1; }
28 mv -f /bin/sh.bak /bin/sh
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/lib $fs/usr/lib
35 cp -a $_pkg/lib/*.so* $fs/lib
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/bin $fs/usr
38 }