wok annotate fuse-exfat/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
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 }