wok annotate fuse-exfat/receipt @ rev 20672

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 14:51:04 2019 +0100 (2019-01-24)
parents 0edf1de936ad
children
rev   line source
pascal@13300 1 # SliTaz package receipt.
pascal@13300 2
pascal@13300 3 PACKAGE="fuse-exfat"
pascal@20525 4 VERSION="1.3.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@20672 9 WEB_SITE="https://github.com/relan/exfat"
pascal@13300 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20525 11 WGET_URL="https://github.com/relan/exfat/archive/v$VERSION.tar.gz"
pascal@13300 12
pascal@13300 13 DEPENDS="fuse"
pascal@20525 14 BUILD_DEPENDS="autoconf automake perl-getopt-long fuse-dev"
pascal@13300 15
pascal@13300 16 # Rules to configure and make the package.
pascal@13300 17 compile_rules()
pascal@13300 18 {
pascal@20525 19 autoreconf --install
pascal@20525 20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@20525 21 make 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@20525 27 mkdir -p $fs/usr/
pascal@20525 28 cp -a $install/usr/sbin $fs/usr
pascal@13300 29 }