wok view exfat-utils/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 5ea0ce1cecc0
children 20ad21d5532c
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="fuse2"
15 BUILD_DEPENDS="autoconf automake fuse2-dev"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 autoreconf --install
27 ./configure
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/sbin $fs/usr
35 mv $install/usr/sbin/mount.exfat* $fs/sbin
36 cp -a $install/usr/sbin $fs/usr
37 }