wok view mtpfs/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents ac8ca9758df1
children
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="fuse2 libgio libid3tag libmad libmtp"
15 BUILD_DEPENDS="autoconf automake fuse2-dev libid3tag-dev libmad-dev libmtp-dev"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 aclocal &&
27 autoconf &&
28 automake -a &&
29 ./configure $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 }