wok view ccache/receipt @ rev 7321

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