2022-01-09 16:15:39 +01:00
|
|
|
# Description: Portable Hardware Locality is a portable abstraction of hierarchical architectures
|
|
|
|
# URL: https://www.open-mpi.org/projects/hwloc/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: libxml2 xorg-libpciaccess xorg-libx11
|
|
|
|
|
|
|
|
name=hwloc
|
2023-06-30 15:11:45 +02:00
|
|
|
version=2.9.2
|
2022-01-09 16:15:39 +01:00
|
|
|
release=1
|
|
|
|
source=(https://www.open-mpi.org/software/hwloc/v${version%.*}/downloads/${name}-${version}.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2023-04-05 20:06:56 +02:00
|
|
|
|
2022-01-09 16:15:39 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--sysconfdir=/etc \
|
2023-04-07 11:48:12 +02:00
|
|
|
--enable-plugins \
|
|
|
|
--disable-cairo
|
2022-01-09 16:15:39 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|