wok diff exfat-utils/receipt @ rev 21699

updated potamus (15 -> 17)
author Hans-G?nter Theisgen
date Wed Jun 05 17:53:51 2019 +0100 (2019-06-05)
parents 8dd8bab3f0ca
children cac92e0c04fc
line diff
     1.1 --- a/exfat-utils/receipt	Thu Jan 24 14:51:04 2019 +0100
     1.2 +++ b/exfat-utils/receipt	Wed Jun 05 17:53:51 2019 +0100
     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  }