wok-current rev 23200
updated mtpfs (1.1 -> 2.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 20 16:50:35 2020 +0100 (2020-03-20) |
parents | 3dd0f58c7a6d |
children | 838f98bae55e |
files | mtpfs/receipt |
line diff
1.1 --- a/mtpfs/receipt Fri Mar 20 16:36:20 2020 +0100 1.2 +++ b/mtpfs/receipt Fri Mar 20 16:50:35 2020 +0100 1.3 @@ -1,27 +1,33 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mtpfs" 1.7 -VERSION="1.1" 1.8 +VERSION="2.0" 1.9 CATEGORY="multimedia" 1.10 -SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device" 1.11 +SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device." 1.12 MAINTAINER="keupont@no-log.org" 1.13 LICENSE="GPL3" 1.14 WEB_SITE="https://www.adebenham.com/mtpfs/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WGET_URL="https://www.adebenham.com/files/mtp/$TARBALL" 1.18 +WGET_URL="https://github.com/Feandil/$PACKAGE/archive/v$VERSION.tar.gz" 1.19 1.20 -DEPENDS="fuse libmtp libmad libid3tag libgio" 1.21 -BUILD_DEPENDS="fuse-dev libmtp-dev libmad-dev libid3tag-dev" 1.22 +DEPENDS="fuse libgio libid3tag libmad libmtp" 1.23 +BUILD_DEPENDS="autoconf automake fuse-dev libid3tag-dev libmad-dev libmtp-dev" 1.24 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 - ./configure $CONFIGURE_ARGS && make && make install 1.29 + aclocal && 1.30 + autoconf && 1.31 + automake -a && 1.32 + ./configure $CONFIGURE_ARGS && 1.33 + make && 1.34 + make install 1.35 } 1.36 1.37 # Rules to gen a SliTaz package suitable for Tazpkg. 1.38 genpkg_rules() 1.39 { 1.40 mkdir -p $fs/usr 1.41 - cp -a $install/usr/bin $fs/usr 1.42 + cp -a $install/usr/bin $fs/usr 1.43 }