From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/hwloc/PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 extra/hwloc/PKGBUILD (limited to 'extra/hwloc') diff --git a/extra/hwloc/PKGBUILD b/extra/hwloc/PKGBUILD new file mode 100644 index 000000000..e1cf1b850 --- /dev/null +++ b/extra/hwloc/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 114641 2011-03-15 00:30:43Z stephane $ +# Maintainer : Stéphane Gaudreault +# Contributor: Sylvain HENRY +# Contributor: Hervé YVIQUEL + +pkgname=hwloc +pkgver=1.1.1 +pkgrel=2 +pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical architectures" +arch=('i686' 'x86_64') +url="http://www.open-mpi.org/projects/hwloc/" +license=('BSD') +depends=('sh') +makedepends=('pkg-config') +optdepends=('cairo: Graphical output' 'libxml2: XML export') +options=('!libtool' '!docs') +source=(http://www.open-mpi.org/software/hwloc/v1.1/downloads/${pkgname}-${pkgver}.tar.bz2) +sha1sums=('ca99f6e7c9cb41ca0ce89171c817c1de1d9bbde1') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE + + # Rename hwloc-gather-topology.sh script to be consistent with the upcoming version 1.2 + mv "${pkgdir}"/usr/bin/hwloc-gather-topology{.sh,} + mv "${pkgdir}"/usr/share/man/man1/hwloc-gather-topology{.sh.1,.1} + sed -i -e 's/hwloc-gather-topology.sh/hwloc-gather-topology/g' "${pkgdir}"/usr/share/man/man1/hwloc-gather-topology.1 +} -- cgit v1.2.3-54-g00ecf