mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
19 lines
592 B
Bash
19 lines
592 B
Bash
# $Id: PKGBUILD 4160 2008-07-04 17:16:40Z hugo $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
pkgname=isapnptools
|
|
pkgver=1.27
|
|
pkgrel=2
|
|
pkgdesc="allow ISA Plug-And-Play devices to be configured on a Linux machine"
|
|
url="http://www.roestock.demon.co.uk/isapnptools/"
|
|
depends=('glibc')
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
source=(ftp://metalab.unc.edu/pub/Linux/system/hardware/isapnptools-$pkgver.tgz)
|
|
md5sums=('b997ba56583dc850fce9b93d658dfa0c')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|