wok-6.x annotate libmtp/receipt @ rev 9676
Fixed tazdev. Tazwok uses mercurial| not hg| in WGET_URL.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed May 04 16:22:49 2011 +0000 (2011-05-04) |
parents | 6064c52b3ad3 |
children | 68859c818455 |
rev | line source |
---|---|
keupont@2883 | 1 # SliTaz package receipt. |
keupont@2883 | 2 |
keupont@2883 | 3 PACKAGE="libmtp" |
keupont@2883 | 4 VERSION="0.3.7" |
keupont@2883 | 5 CATEGORY="system-tools" |
keupont@2883 | 6 SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)" |
keupont@2883 | 7 MAINTAINER="keupont@no-log.org" |
gokhlayeh@8870 | 8 DEPENDS="libusb-compat" |
keupont@2883 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
keupont@2883 | 10 WEB_SITE="http://libmtp.sourceforge.net/" |
keupont@2883 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
keupont@2883 | 12 |
keupont@2883 | 13 # Rules to configure and make the package. |
keupont@2883 | 14 compile_rules() |
keupont@2883 | 15 { |
keupont@2883 | 16 cd $src |
gokhlayeh@8870 | 17 ./configure && make && make install |
keupont@2883 | 18 } |
keupont@2883 | 19 |
keupont@2883 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
keupont@2883 | 21 genpkg_rules() |
keupont@2883 | 22 { |
keupont@2883 | 23 mkdir -p $fs/usr/lib |
keupont@2883 | 24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
keupont@2883 | 25 } |
keupont@2883 | 26 |