# HG changeset patch # User Richard Dunbar # Date 1551984942 18000 # Node ID cea8111d6199d3a962d83a5bd6c8e3c5ae591cf0 # Parent e5668416e6115213f49933419101de0654379f89 Up exfat-utils (1.3.0) diff -r e5668416e611 -r cea8111d6199 exfat-utils/receipt --- a/exfat-utils/receipt Thu Mar 07 17:47:51 2019 +0100 +++ b/exfat-utils/receipt Thu Mar 07 13:55:42 2019 -0500 @@ -1,29 +1,30 @@ # SliTaz package receipt. PACKAGE="exfat-utils" -VERSION="1.0.0" +VERSION="1.3.0" CATEGORY="base-system" SHORT_DESC="exFAT file system tools." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" WEB_SITE="https://github.com/relan/exfat" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://exfat.googlecode.com/files/$TARBALL" +WGET_URL="https://github.com/relan/exfat/archive/v$VERSION/$TARBALL" -DEPENDS="" -BUILD_DEPENDS="scons" +DEPENDS="fuse" +BUILD_DEPENDS="autoconf automake fuse-dev" # Rules to configure and make the package. compile_rules() { - cd $src - scons PREFIX=/usr - scons -k DESTDIR=$DESTDIR install + autoreconf --install + ./configure + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/sbin - cp -a $install/* $fs/sbin + mkdir -p $fs/sbin $fs/usr + mv $install/usr/sbin/mount.exfat* $fs/sbin + cp -a $install/usr/sbin $fs/usr }