wok-4.x view mtpfs/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents dc36fa4b342c
children 1ea1928aa3ff
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-dev glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.adebenham.com/mtpfs/"
12 WGET_URL="http://www.adebenham.com/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }