wok-4.x annotate aufs-utils/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 (15 months ago)
parents 7a0a615d3b4a
children
rev   line source
pankso@4309 1 # SliTaz package receipt.
pankso@4309 2
pankso@4309 3 PACKAGE="aufs-utils"
gokhlayeh@8584 4 VERSION="20110214"
pankso@4309 5 CATEGORY="system-tools"
pankso@4309 6 SHORT_DESC="The aufs utils."
pankso@4309 7 MAINTAINER="pankso@slitaz.org"
pankso@9814 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@4309 9 WEB_SITE="http://aufs.sourceforge.net/"
shann@12471 10 #WGET_URL="git|http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git"
shann@12471 11 WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/a/$TARBALL"
gokhlayeh@8584 12 BRANCH="origin/aufs2.1"
pankso@9814 13
pankso@9814 14 DEPENDS="aufs"
pascal@10449 15 BUILD_DEPENDS="git linux-module-headers aufs"
pankso@9814 16
pankso@4309 17 # Rules to configure and make the package.
pankso@4309 18 compile_rules()
pankso@4309 19 {
gokhlayeh@8546 20 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
pankso@4309 21 cd $src
pascal@5065 22 sed -i 's/-m 644 -T/-m 644/' Makefile
slaxemulator@8144 23 make &&
slaxemulator@8144 24 make DESTDIR=$PWD/_pkg install
pankso@4309 25 }
pankso@4309 26
pankso@4309 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4309 28 genpkg_rules()
pankso@4309 29 {
pankso@4309 30 mkdir -p $fs/usr
pankso@4309 31 cp -a $_pkg/sbin $fs
pankso@4309 32 cp -a $_pkg/usr/bin $fs/usr
pankso@4309 33 }
slaxemulator@6717 34