wok-stable view aufs-utils/receipt @ rev 8581

imported patch get/tty-clock
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Feb 13 22:57:57 2011 +0100 (2011-02-13)
parents f5c01862825b
children 67231cfc5475
line source
1 # SliTaz package receipt.
3 PACKAGE="aufs-utils"
4 VERSION="2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="The aufs utils."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="aufs"
9 BUILD_DEPENDS="git linux-module-headers"
10 WEB_SITE="http://aufs.sourceforge.net/"
11 WGET_URL="git|http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git"
12 BRANCH="origin/aufs$VERSION"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 KERNEL_VERSION=`grep ^VERSION= $WOK/linux/receipt | cut -d "=" -f2 | sed -e 's/"//g'`
17 cd $src
18 sed -i 's/-m 644 -T/-m 644/' Makefile
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/sbin $fs
28 cp -a $_pkg/usr/bin $fs/usr
29 }