wok view exfat-utils/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
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 }