wok rev 21642
created simple-mtpfs
author | Hans-G?nter Theisgen |
---|---|
date | Wed May 29 18:00:29 2019 +0100 (2019-05-29) |
parents | 65c59ca32cb9 |
children | b268d1ae0b76 |
files | simple-mtpfs/description.txt simple-mtpfs/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/simple-mtpfs/description.txt Wed May 29 18:00:29 2019 +0100 1.3 @@ -0,0 +1,7 @@ 1.4 +SIMPLE-MTPFS (Simple Media Transfer Protocol FileSystem) is a file system for Linux 1.5 +(and other operating systems with a FUSE implementation, such as Mac OS X or FreeBSD) 1.6 +capable of operating on files on MTP devices attached via USB to local machine. 1.7 +On the local computer where the SIMPLE-MTPFS is mounted, the implementation makes 1.8 +use of the FUSE (Filesystem in Userspace) kernel module. 1.9 +The practical effect of this is that the end user can seamlessly interact with 1.10 +MTP device files.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/simple-mtpfs/receipt Wed May 29 18:00:29 2019 +0100 2.3 @@ -0,0 +1,41 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="simple-mtpfs" 2.7 +VERSION="0.3.0" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="Simple MTP fuse filesystem driver." 2.10 +MAINTAINER="developer@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="https://github.com/phatina/simple-mtpfs" 2.13 + 2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 +WGET_URL="https://github.com/phatina/$PACKAGE/archive/$TARBALL" 2.16 + 2.17 +DEPENDS="fuse libmtp" 2.18 +BUILD_DEPENDS="automake fuse-dev gcc83 libmtp-dev" 2.19 + 2.20 +HOST_ARCH="i486 arm" 2.21 + 2.22 +# Rules to configure and make the package. 2.23 +compile_rules() 2.24 +{ 2.25 + export CC=gcc-83 2.26 + export CXX=g++-83 2.27 + 2.28 + ./autogen.sh && 2.29 + mkdir build && 2.30 + cd build && 2.31 + 2.32 + ../configure \ 2.33 + --prefix=/usr \ 2.34 + $CONFIGURE_ARGS && 2.35 + make && 2.36 + make install 2.37 +} 2.38 + 2.39 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.40 +genpkg_rules() 2.41 +{ 2.42 + mkdir -p $fs/usr 2.43 + cp -a $install/usr/bin $fs/usr 2.44 +}