d3bc0de1e7
It wasn't too useful after all and this slowed down the dependency process marginally. We don't need this, we can live without this.
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'hwloc'
|
|
pkgname=hwloc
|
|
version=1.11.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
makedepends="cairo-devel ncurses-devel libxml2-devel eudev-libudev-devel"
|
|
case "$XBPS_TARGET_ARCH" in
|
|
i686*|x86_64*) makedepends+=" libnuma-devel";;
|
|
esac
|
|
short_desc="Portable abstraction of hierarchical hardware architectures"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://www.open-mpi.org/projects/hwloc/"
|
|
distfiles="http://www.open-mpi.org/software/hwloc/v${version%.*}/downloads/${pkgname}-${version}.tar.bz2"
|
|
checksum=8c029b6b1638245837707bfa6c865f448af4e49e7d352335e019d818b51fecf8
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/usr/share/doc
|
|
}
|
|
|
|
libhwloc_package() {
|
|
short_desc+=" - libraries"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so.*
|
|
vmove usr/share/hwloc/hwloc.dtd
|
|
vlicense COPYING
|
|
}
|
|
}
|
|
|
|
libhwloc-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libhwloc>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share/man/man3
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/hwloc/hwloc-valgrind.supp
|
|
}
|
|
}
|