wok-next view hal-info/receipt @ rev 20513
A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 21 15:58:17 2018 +0200 (2018-03-21) |
parents | de49f29b101e |
children | 757d032c55c7 |
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 LICENSE="GPL2 LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.freedesktop.org/wiki/Software/hal"
11 WGET_URL="http://hal.freedesktop.org/releases/$TARBALL"
13 DEPENDS="hal hal-extra"
14 BUILD_DEPENDS="hal-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --libexecdir=/usr/lib/hal \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 --disable-recall \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs/
37 }