wok view ccache/receipt @ rev 21803

created recipe for nnn 2.6
author Hans-G?nter Theisgen
date Sat Aug 10 20:59:16 2019 +0100 (2019-08-10)
parents a78610b2eb47
children 1e19188eb149
line source
1 # SliTaz package receipt.
3 PACKAGE="ccache"
4 VERSION="3.6"
5 CATEGORY="development"
6 TAGS="compiler"
7 SHORT_DESC="Compiler cache"
8 MAINTAINER="erjo@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://ccache.samba.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://www.samba.org/ftp/$PACKAGE/$TARBALL"
15 DEPENDS="zlib"
16 BUILD_DEPENDS="zlib-dev"
17 SUGGESTED="gcc"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }