wok view mtpfs/receipt @ 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 6e8b1bcb30e2
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="mtpfs"
4 VERSION="2.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device."
7 MAINTAINER="keupont@no-log.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.adebenham.com/mtpfs/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/Feandil/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="fuse libgio libid3tag libmad libmtp"
15 BUILD_DEPENDS="autoconf automake fuse-dev libid3tag-dev libmad-dev libmtp-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 aclocal &&
21 autoconf &&
22 automake -a &&
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }