wok view owfs/receipt @ rev 11573

Fix build/host configure option in recipes which was not detecting the right ones well + tiny fixes.
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 02 23:06:18 2012 +0100 (2012-01-02)
parents ab72a4d08ed3
children 600aaedb561d
line source
1 # SliTaz package receipt.
3 PACKAGE="owfs"
4 VERSION="2.7p33"
5 CATEGORY="misc"
6 SHORT_DESC="OWFS One Wire File System."
7 MAINTAINER="l.lemarinel@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="www.owfs.org"
10 WGET_URL="http://freefr.dl.sourceforge.net/project/owfs/owfs/$VERSION/$TARBALL"
11 BUILD_DEPENDS="fuse-dev libusb libusb-dev libusb-compat"
12 DEPENDS="fuse libusb"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --bindir=/usr/bin $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }