wok annotate mtpfs/receipt @ rev 23757

fusecloop/extract_compressed_fs: fix v2 convertion
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 17:31:45 2020 +0000 (2020-05-02)
parents 6e8b1bcb30e2
children 5ea0ce1cecc0
rev   line source
keupont@2885 1 # SliTaz package receipt.
keupont@2885 2
keupont@2885 3 PACKAGE="mtpfs"
Hans-G?nter@23200 4 VERSION="2.0"
keupont@2885 5 CATEGORY="multimedia"
Hans-G?nter@23200 6 SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device."
keupont@2885 7 MAINTAINER="keupont@no-log.org"
pascal@14999 8 LICENSE="GPL3"
pascal@20671 9 WEB_SITE="https://www.adebenham.com/mtpfs/"
Hans-G?nter@23200 10
pascal@14999 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@23200 12 WGET_URL="https://github.com/Feandil/$PACKAGE/archive/v$VERSION.tar.gz"
pascal@14999 13
Hans-G?nter@23200 14 DEPENDS="fuse libgio libid3tag libmad libmtp"
Hans-G?nter@23200 15 BUILD_DEPENDS="autoconf automake fuse-dev libid3tag-dev libmad-dev libmtp-dev"
keupont@2885 16
keupont@2885 17 # Rules to configure and make the package.
keupont@2885 18 compile_rules()
keupont@2885 19 {
Hans-G?nter@23200 20 aclocal &&
Hans-G?nter@23200 21 autoconf &&
Hans-G?nter@23200 22 automake -a &&
Hans-G?nter@23200 23 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@23200 24 make &&
Hans-G?nter@23200 25 make install
keupont@2885 26 }
keupont@2885 27
keupont@2885 28 # Rules to gen a SliTaz package suitable for Tazpkg.
keupont@2885 29 genpkg_rules()
keupont@2885 30 {
keupont@2885 31 mkdir -p $fs/usr
Hans-G?nter@23200 32 cp -a $install/usr/bin $fs/usr
keupont@2885 33 }