blob: 99821bafc4b3cee359dbd922811db686b34fad14 (
plain)
1 # Description: Portable Hardware Locality is a portable abstraction of hierarchical architectures
2 # URL: https://www.open-mpi.org/projects/hwloc/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libxml2 xorg-libpciaccess xorg-libx11
5
6 name=hwloc
7 version=2.8.0
8 release=1
9 source=(https://www.open-mpi.org/software/hwloc/v${version%.*}/downloads/${name}-${version}.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --prefix=/usr \
15 --sbindir=/usr/bin \
16 --sysconfdir=/etc \
17 --enable-plugins
18 make
19 make DESTDIR=$PKG install
20 }
|