wok diff fuse-exfat/receipt @ rev 20525

Up fuse-exfat (1.3.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 07 10:46:24 2018 +0100 (2018-11-07)
parents 2b9f96603415
children 8dd8bab3f0ca
line diff
     1.1 --- a/fuse-exfat/receipt	Sat Aug 10 13:52:56 2013 +0000
     1.2 +++ b/fuse-exfat/receipt	Wed Nov 07 10:46:24 2018 +0100
     1.3 @@ -1,29 +1,29 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fuse-exfat"
     1.7 -VERSION="1.0.0"
     1.8 +VERSION="1.3.0"
     1.9  CATEGORY="base-system"
    1.10  SHORT_DESC="Full-featured exFAT file system implementation."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL3"
    1.13  WEB_SITE="http://code.google.com/p/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.tar.gz"
    1.17  
    1.18  DEPENDS="fuse"
    1.19 -BUILD_DEPENDS="scons fuse-dev"
    1.20 +BUILD_DEPENDS="autoconf automake perl-getopt-long fuse-dev"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	cd $src
    1.26 -	scons PREFIX=/usr
    1.27 -	scons -k DESTDIR=$DESTDIR install
    1.28 +	autoreconf --install
    1.29 +	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.30 +	make DESTDIR=$DESTDIR install
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36 -	mkdir -p $fs/sbin
    1.37 -	cp -a $install/* $fs/sbin
    1.38 +	mkdir -p $fs/usr/
    1.39 +	cp -a $install/usr/sbin $fs/usr
    1.40  }