wok view ccache/receipt @ rev 6717

Bumped aufs-utils.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 14 12:40:34 2010 +0000 (2010-10-14)
parents feae50930315
children 6a575e39c77d
line source
1 # SliTaz package receipt.
3 PACKAGE="ccache"
4 VERSION="2.4"
5 CATEGORY="development"
6 SHORT_DESC="Compiler cache"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://ccache.samba.org/"
11 WGET_URL="http://samba.org/ftp/ccache/$TARBALL"
12 SUGGESTED="gcc"
13 TAGS="compiler"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }