summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f8c8f63cd81e3ab211aa40be976a42209d92741c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=hal-info
_date=20091130
pkgver=0.${_date}
pkgrel=3
pkgdesc="Hardware Abstraction Layer information files"
arch=(any)
options=('!emptydirs')
license=('GPL' 'custom')
url="http://www.freedesktop.org/wiki/Software/hal"
source=(http://hal.freedesktop.org/releases/hal-info-${_date}.tar.gz)
md5sums=('34375489a02a00b250fdc0b280be11b8')

build() {
  cd "${srcdir}/${pkgname}-${_date}"
  ./configure \
	--prefix=/usr \
	--sysconfdir=/etc \
	--enable-killswitch-dell-wlan=no \
	--enable-killswitch-dell-bluetooth=no \
	--enable-killswitch-dell-wwan=no
  make
}
 
package() {
  cd "${srcdir}/${pkgname}-${_date}"
  make DESTDIR=${pkgdir} install 
}