wok view fuse-exfat/receipt @ rev 16281

ARM: add beaver
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 16:03:46 2014 +0200 (2014-04-06)
parents ea414f3e2eeb
children 0edf1de936ad
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse-exfat"
4 VERSION="1.0.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Full-featured exFAT file system implementation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://code.google.com/p/exfat/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://exfat.googlecode.com/files/$TARBALL"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="scons fuse-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 scons PREFIX=/usr
21 scons -k DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/sbin
28 cp -a $install/* $fs/sbin
29 }