wok view libusb/receipt @ rev 4320

glade3: do not built doc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 29 21:41:10 2009 +0200 (2009-09-29)
parents b1c755879a00
children 15cbebdedd90
line source
1 # SliTaz package receipt.
3 PACKAGE="libusb"
4 VERSION="1.0.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="USB accedd library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libusb-compat"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libusb.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }