wok-4.x view acl/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (14 months ago)
parents 242a015e1b52
children
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="slitaz-toolchain bash autoconf automake m4 libtool \
10 gettext attr-dev attr"
11 TARBALL="${PACKAGE}-${VERSION}.src.tar.gz"
12 WEB_SITE="http://savannah.nongnu.org/projects/acl/"
13 WGET_URL="http://nongnu.askapache.com/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
20 # Need bash sh to compile
21 mv /bin/sh /bin/sh.bak
22 ln -s /bin/bash /bin/sh
24 # Configure is included in Makefile
25 { make LOCAL_CONFIGURE_OPTIONS="$CONFIGURE_ARGS" &&
26 make install install-lib install-dev DIST_ROOT=$DESTDIR
27 } || { mv -f /bin/sh.bak /bin/sh; return 1; }
29 mv -f /bin/sh.bak /bin/sh
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/lib $fs/usr/lib
36 cp -a $_pkg/lib/*.so* $fs/lib
37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
38 cp -a $_pkg/usr/bin $fs/usr
39 }