wok view mtpfs/receipt @ rev 13077

Up: fuse to 2.8.7.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jun 25 08:53:28 2012 +0000 (2012-06-25)
parents a26533414b94
children 4a418a388a07
line source
1 # SliTaz package receipt.
3 PACKAGE="mtpfs"
4 VERSION="1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device"
7 MAINTAINER="keupont@no-log.org"
8 DEPENDS="libmtp libnjb libid3tag libmad fuse glib"
9 BUILD_DEPENDS="libnjb-dev libid3tag-dev libmtp-dev fuse fuse-dev \
10 glib-dev libmad-dev libusb-compat-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.adebenham.com/mtpfs/"
13 WGET_URL="http://www.adebenham.com/files/mtp/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }