wok annotate exfat-utils/receipt @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents 8dd8bab3f0ca
children cac92e0c04fc
rev   line source
pascal@13301 1 # SliTaz package receipt.
pascal@13301 2
pascal@13301 3 PACKAGE="exfat-utils"
mojo@20996 4 VERSION="1.3.0"
pascal@13301 5 CATEGORY="base-system"
pascal@13301 6 SHORT_DESC="exFAT file system tools."
pascal@13301 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@20672 9 WEB_SITE="https://github.com/relan/exfat"
pascal@13301 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
mojo@20996 11 WGET_URL="https://github.com/relan/exfat/archive/v$VERSION/$TARBALL"
pascal@13301 12
mojo@20996 13 DEPENDS="fuse"
mojo@20996 14 BUILD_DEPENDS="autoconf automake fuse-dev"
pascal@13301 15
pascal@13301 16 # Rules to configure and make the package.
pascal@13301 17 compile_rules()
pascal@13301 18 {
mojo@20996 19 autoreconf --install
mojo@20996 20 ./configure
mojo@20996 21 make DESTDIR=$DESTDIR install
pascal@13301 22 }
pascal@13301 23
pascal@13301 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13301 25 genpkg_rules()
pascal@13301 26 {
mojo@20996 27 mkdir -p $fs/sbin $fs/usr
mojo@20996 28 mv $install/usr/sbin/mount.exfat* $fs/sbin
mojo@20996 29 cp -a $install/usr/sbin $fs/usr
pascal@13301 30 }