wok rev 20996
Up exfat-utils (1.3.0)
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Thu Mar 07 13:55:42 2019 -0500 (2019-03-07) |
parents | e5668416e611 |
children | 456d349acad9 |
files | exfat-utils/receipt |
line diff
1.1 --- a/exfat-utils/receipt Thu Mar 07 17:47:51 2019 +0100 1.2 +++ b/exfat-utils/receipt Thu Mar 07 13:55:42 2019 -0500 1.3 @@ -1,29 +1,30 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="exfat-utils" 1.7 -VERSION="1.0.0" 1.8 +VERSION="1.3.0" 1.9 CATEGORY="base-system" 1.10 SHORT_DESC="exFAT file system tools." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL3" 1.13 WEB_SITE="https://github.com/relan/exfat" 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WGET_URL="http://exfat.googlecode.com/files/$TARBALL" 1.16 +WGET_URL="https://github.com/relan/exfat/archive/v$VERSION/$TARBALL" 1.17 1.18 -DEPENDS="" 1.19 -BUILD_DEPENDS="scons" 1.20 +DEPENDS="fuse" 1.21 +BUILD_DEPENDS="autoconf automake fuse-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 - cd $src 1.27 - scons PREFIX=/usr 1.28 - scons -k DESTDIR=$DESTDIR install 1.29 + autoreconf --install 1.30 + ./configure 1.31 + make DESTDIR=$DESTDIR install 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 - mkdir -p $fs/sbin 1.38 - cp -a $install/* $fs/sbin 1.39 + mkdir -p $fs/sbin $fs/usr 1.40 + mv $install/usr/sbin/mount.exfat* $fs/sbin 1.41 + cp -a $install/usr/sbin $fs/usr 1.42 }