wok view mtpfs/receipt @ rev 12564

udev: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 28 18:52:14 2012 +0200 (2012-04-28)
parents 1ea1928aa3ff
children e57b3d34004e
line source
1 # SliTaz package receipt.
3 PACKAGE="mtpfs"
4 VERSION="0.9"
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/$PACKAGE/$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=$PWD/_pkg 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 }