wok view usbip/receipt @ rev 1491

Update BUILD_DEPENDS for bogofilter ecore gimp graphviz hydra libgnomeprintui mesa mjpegtools poppler psycopg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 12:58:12 2008 +0000 (2008-10-05)
parents cdbeff43eaea
children 86896ca215ac
line source
1 # SliTaz package receipt.
3 PACKAGE="usbip"
4 VERSION="0.1.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="general USB device sharing system over IP network."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="sysfsutils"
10 BUILD_DEPENDS="sysfsutils-dev"
11 WEB_SITE="http://usbip.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/src
18 ./autogen.sh
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/../_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }