wok annotate afpfs-ng/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 617dbdeb6f7e
children 45507bfb2b0d
rev   line source
pascal@11213 1 # SliTaz package receipt.
pascal@11213 2
pascal@11213 3 PACKAGE="afpfs-ng"
pascal@11213 4 VERSION="0.8.1"
pascal@11213 5 CATEGORY="system-tools"
pascal@11213 6 SHORT_DESC="The free afpfs driver."
pascal@11213 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15362 8 LICENSE="GPL2"
pascal@11213 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@11213 10 WEB_SITE="http://alexthepuffin.googlepages.com/"
pascal@11213 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11213 12
pascal@15362 13 DEPENDS="fuse libgcrypt readline gmp"
pascal@15616 14 BUILD_DEPENDS="libgcrypt-dev readline-dev gmp-dev fuse-dev gmp automake"
pascal@15362 15
pascal@11213 16 # Rules to configure and make the package.
pascal@11213 17 compile_rules()
pascal@11213 18 {
pascal@11213 19 cd $src
pascal@11213 20 ./configure $CONFIGURE_ARGS &&
pascal@11213 21 make && make install
pascal@11213 22 }
pascal@11213 23
pascal@11213 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11213 25 genpkg_rules()
pascal@11213 26 {
pascal@11213 27 mkdir -p $fs/usr/lib
pascal@11213 28 cp -a $install/usr/bin $fs/usr
pascal@11213 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11213 30 }