PKGBUILDs/extra/devicekit/PKGBUILD
2009-10-09 21:23:22 -05:00

26 lines
884 B
Bash

# $Id: $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Denis Zawada <deno@rootnode.net>
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
pkgname=devicekit
pkgver=003
pkgrel=2
pkgdesc="DeviceKit is an abstraction for enumerating devices and listening to device events"
arch=('i686' 'x86_64')
url="http://www.freedesktop.org/wiki/Software/DeviceKit"
license=('LGPL')
depends=('dbus-glib>=0.80' 'udev>=141')
makedepends=('gtk-doc' 'pkgconfig' 'docbook-xsl')
options=('!libtool')
install=
source=("http://hal.freedesktop.org/releases/DeviceKit-${pkgver}.tar.gz")
md5sums=('8b311547f4a2c8c6b6598e3318d66cd7')
build() {
cd "${srcdir}/DeviceKit-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--libexecdir=/usr/lib/DeviceKit --disable-static
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}