wok-current view hal-info/receipt @ rev 7299
Fixed linux receipt to not soft link to WOK/aufs/aufs-VERSION since it will cause problems with building.
| author | Christopher Rogers <slaxemulator@gmail.com> | 
|---|---|
| date | Wed Nov 17 02:05:01 2010 +0000 (2010-11-17) | 
| parents | 178af875768f | 
| children | de49f29b101e | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="hal-info"
     4 VERSION="20091130"
     5 CATEGORY="x-window"
     6 SHORT_DESC="hal sub-package that provides the hardware data and quirks. "
     7 MAINTAINER="domcox@slitaz.org"
     8 DEPENDS="hal hal-extra"
     9 BUILD_DEPENDS="hal-dev pkg-config"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.freedesktop.org/wiki/Software/hal"
    12 WGET_URL="http://hal.freedesktop.org/releases/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure \
    19 		--prefix=/usr \
    20 		--libexecdir=/usr/lib/hal \
    21 		--sysconfdir=/etc \
    22 		--localstatedir=/var \
    23 		--infodir=/usr/share/info \
    24 		--mandir=/usr/share/man \
    25 		--disable-recall \
    26 		$CONFIGURE_ARGS &&
    27 	make && 
    28 	make DESTDIR=$PWD/_pkg install
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	cp -a $_pkg/usr $fs/
    35 }