opt/hal/Pkgfile
2009-05-20 13:07:24 +10:00

40 lines
1.1 KiB
Plaintext

# Description: Hardware Abstraction Layer
# URL: http://www.freedesktop.org/wiki/Software/hal
# Packager: Matt Housh, jaeger at crux dot nu
# Maintainer: Lucas Hazel, lucas at die dot net dot au
# Depends on: dbus-glib, hal-info
name=hal
version=0.5.12
release=1
source=(http://hal.freedesktop.org/releases/$name-$version.tar.gz \
hal.conf
rc.hald)
build() {
cd $name-$version
sed -i -e 's/USE_NLS=yes/USE_NLS=no/' \
-e 's/ENABLE_NLS 1/ENABLE_NLS 0/' configure
./configure --prefix=/usr \
--mandir=/usr/man \
--libexecdir=/usr/lib/$name \
--localstatedir=/var \
--with-hal-user=haldaemon \
--with-hal-group=haldaemon \
--with-dbus-sys=/usr/etc/dbus-1/system.d \
--with-hwdata=/usr/share \
--disable-policy-kit \
--disable-console-kit
sed -i -e '/device-manager/d' tools/Makefile
make
make DESTDIR=$PKG install
install -D -o root -g root -m 0755 $SRC/rc.hald \
$PKG/etc/rc.d/hald
mv $PKG/usr/udev $PKG/etc/
rm -rf $PKG/usr/share/{doc,locale}
rm -rf $PKG/usr/share/gtk-doc
cp $SRC/hal.conf $PKG/usr/etc/dbus-1/system.d/
mkdir -p $PKG/var/lib/hal
chown haldaemon:haldaemon $PKG/var/lib/hal
}