wok annotate fuse-exfat/receipt @ rev 15213

Add nbd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 13 12:21:17 2013 +0000 (2013-09-13)
parents ea414f3e2eeb
children 0edf1de936ad
rev   line source
pascal@13300 1 # SliTaz package receipt.
pascal@13300 2
pascal@13300 3 PACKAGE="fuse-exfat"
pascal@13907 4 VERSION="1.0.0"
pascal@13300 5 CATEGORY="base-system"
pascal@13300 6 SHORT_DESC="Full-featured exFAT file system implementation."
pascal@13300 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@13300 9 WEB_SITE="http://code.google.com/p/exfat/"
pascal@13300 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13300 11 WGET_URL="http://exfat.googlecode.com/files/$TARBALL"
pascal@13300 12
pascal@13300 13 DEPENDS="fuse"
pascal@13300 14 BUILD_DEPENDS="scons fuse-dev"
pascal@13300 15
pascal@13300 16 # Rules to configure and make the package.
pascal@13300 17 compile_rules()
pascal@13300 18 {
pascal@13300 19 cd $src
pascal@13300 20 scons PREFIX=/usr
pascal@13300 21 scons -k DESTDIR=$DESTDIR install
pascal@13300 22 }
pascal@13300 23
pascal@13300 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13300 25 genpkg_rules()
pascal@13300 26 {
pascal@13300 27 mkdir -p $fs/sbin
pascal@13300 28 cp -a $install/* $fs/sbin
pascal@13300 29 }