summaryrefslogtreecommitdiff
path: root/pcr/ipmiutil/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-28 02:03:12 -0800
committerroot <root@rshg054.dnsready.net>2012-12-28 02:03:12 -0800
commitf898ca0bac349e5ffa815b91afbcc852956d8913 (patch)
treea7809ed1b6c049f8cfdd25b35d0366113621fa9f /pcr/ipmiutil/PKGBUILD
parentbea8c358e2a890b16f8f158995cd342952fd4a60 (diff)
Fri Dec 28 01:59:05 PST 2012
Diffstat (limited to 'pcr/ipmiutil/PKGBUILD')
-rw-r--r--pcr/ipmiutil/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/pcr/ipmiutil/PKGBUILD b/pcr/ipmiutil/PKGBUILD
new file mode 100644
index 000000000..132ea7c59
--- /dev/null
+++ b/pcr/ipmiutil/PKGBUILD
@@ -0,0 +1,27 @@
+# Contributor: goodmen <goodmenlinux@gmail.com>
+# Contributor: Gergely Imreh <imrehgATgmailDOTcom>
+# Contributors: champus, madeye, Ranguvar and ninja_pt
+# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@cwb.IO>
+
+pkgname=ipmiutil
+pkgver=2.7.5
+pkgrel=1
+pkgdesc="A simple program that lists results from the hardware detection library."
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ipmiutil/"
+license=('BSD2.0')
+depends=('')
+makedepends=('openssl')
+options=('!emptydirs')
+source=("http://prdownloads.sourceforge.net/ipmiutil/ipmiutil-${pkgver}.tar.gz")
+
+build() {
+ cd ${srcdir}
+ tar -xf ${pkgname}-${pkgver}.tar.gz
+
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ ./configure --enable-gpl
+ make -j1 || return 1
+ make DESTDIR=${pkgdir} install || return 1
+}