wok-4.x view attr/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 7817ac3c0699
children
line source
1 # SliTaz package receipt.
3 PACKAGE="attr"
4 VERSION="2.4.46"
5 CATEGORY="system-tools"
6 SHORT_DESC="Commands for Manipulating Filesystem Extended Attributes."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base"
9 BUILD_DEPENDS="slitaz-toolchain bash autoconf automake m4 libtool gettext"
10 TARBALL="${PACKAGE}-${VERSION}.src.tar.gz"
11 WEB_SITE="http://savannah.nongnu.org/projects/attr/"
12 #WGET_URL="http://download.savannah.gnu.org/releases-noredirect/$PACKAGE/$TARBALL"
13 WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/a/$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 }