wok view fuse-exfat/receipt @ rev 13969

syslinux: add 5.0 searchdir resource leak fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 03 17:35:36 2013 +0100 (2013-02-03)
parents 133a73d5cf2d
children 2b9f96603415
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 WEB_SITE="http://code.google.com/p/exfat/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://exfat.googlecode.com/files/$TARBALL"
12 DEPENDS="fuse"
13 BUILD_DEPENDS="scons fuse-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 scons PREFIX=/usr
20 scons -k DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/sbin
27 cp -a $install/* $fs/sbin
28 }