wok view exfat-utils/receipt @ rev 23996

linld: add iso support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 08 20:15:35 2021 +0000 (2021-01-08)
parents cea8111d6199
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="exfat-utils"
4 VERSION="1.3.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="https://github.com/relan/exfat/archive/v$VERSION/$TARBALL"
12 PROVIDE="exfat-fuse"
14 DEPENDS="fuse"
15 BUILD_DEPENDS="autoconf automake fuse-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 autoreconf --install
21 ./configure
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/sbin $fs/usr
29 mv $install/usr/sbin/mount.exfat* $fs/sbin
30 cp -a $install/usr/sbin $fs/usr
31 }