wok view exfat-utils/receipt @ rev 20707

Up tinc (1.0.35)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 06 15:24:48 2019 +0100 (2019-02-06)
parents 2b9f96603415
children cea8111d6199
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 LICENSE="GPL3"
9 WEB_SITE="https://github.com/relan/exfat"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://exfat.googlecode.com/files/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="scons"
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 }