contrib/hwloc/Pkgfile

23 lines
583 B
Plaintext
Raw Normal View History

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-09-13 06:47:56 +02:00
version=2.9.3
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 \
--enable-plugins \
--disable-cairo
2022-01-09 16:15:39 +01:00
make
make DESTDIR=$PKG install
}