wok view ccache/receipt @ rev 23503

updated python-llfuse (0.38 -> 1.3.6)
author Hans-G?nter Theisgen
date Mon Apr 06 08:57:07 2020 +0100 (2020-04-06)
parents 587b2a6d17d7
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="ccache"
4 VERSION="3.7.7"
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://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
15 SUGGESTED="gcc"
16 DEPENDS="zlib"
17 BUILD_DEPENDS="zlib-dev"
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 }