wok-next view aufs-utils/receipt @ rev 20882

Check Repology info from a* to g* packages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jul 10 20:08:05 2018 +0300 (2018-07-10)
parents 11b5e93cb5f2
children 41860cbdf043
line source
1 # SliTaz package receipt.
3 PACKAGE="aufs-utils"
4 VERSION="20130311"
5 CATEGORY="system-tools"
6 SHORT_DESC="The aufs utils."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://aufs.sourceforge.net/"
10 REPOLOGY="aufs-util"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="git|git://aufs.git.sourceforge.net/gitroot/aufs/aufs-util.git"
14 BRANCH="origin/aufs3.0"
16 DEPENDS="aufs"
17 BUILD_DEPENDS="git linux-module-headers aufs"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 KERNEL_VERSION=$(. $WOK/linux/receipt; echo $VERSION)
23 sed -i 's|.*AUFS_XINO_TRUNC_|// &|' c2tmac.c
24 sed -i 's/-m 644 -T/-m 644/' Makefile
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/sbin $fs
35 cp -a $install/usr/bin $fs/usr
36 }