wok view libmtp/receipt @ rev 12188

Add libgee (may be used in SliTaz Vala apps)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 26 01:24:43 2012 +0200 (2012-03-26)
parents 1849e68624e3
children efe5427516d9
line source
1 # SliTaz package receipt.
3 PACKAGE="libmtp"
4 VERSION="0.3.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)"
7 MAINTAINER="keupont@no-log.org"
8 DEPENDS="libusb-compat"
9 BUILD_DEPENDS="libusb-compat libusb-compat-dev libusb-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://libmtp.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure $CONFIGURE_ARGS \
19 && make && make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 }