wok-next view exfat-utils/receipt @ rev 14003
linux: fix module path
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 16 15:38:33 2013 +0100 (2013-02-16) |
parents | e5a576cafd03 |
children | 2b9f96603415 |
line source
1 # SliTaz package receipt.
3 PACKAGE="exfat-utils"
4 VERSION="1.0.0"
5 CATEGORY="base-system"
6 SHORT_DESC="exFAT file system tools."
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=""
13 BUILD_DEPENDS="scons"
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 }