wok-next annotate fuse-exfat/receipt @ rev 18925
description.txt should end with 0x0A byte (Carriage Return, Enter) to not glue with the next description in descriptions.txt.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Feb 25 15:02:38 2016 +0200 (2016-02-25) |
parents | ea414f3e2eeb |
children | 474eb4a6385a |
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 } |