summaryrefslogtreecommitdiff
path: root/community/isapnptools/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/isapnptools/PKGBUILD')
-rw-r--r--community/isapnptools/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/isapnptools/PKGBUILD b/community/isapnptools/PKGBUILD
new file mode 100644
index 000000000..696ca681f
--- /dev/null
+++ b/community/isapnptools/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 102163 2013-12-06 11:42:51Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+
+pkgname=isapnptools
+pkgver=1.27
+pkgrel=4
+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=('GPL')
+options=('staticlibs')
+#source=("ftp://metalab.unc.edu/pub/Linux/system/hardware/${pkgname}-${pkgver}.tgz")
+source=("http://ibiblio.org/pub/Linux/system/hardware/${pkgname}-${pkgver}.tgz")
+md5sums=('b997ba56583dc850fce9b93d658dfa0c')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr \
+ --sbindir=/usr/bin
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}