wok annotate ccache/receipt @ rev 22514

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