Date: Friday, January 26, 2018 @ 01:04:32 Author: anthraxx Revision: 315461
upgpkg: hwloc 1.11.9-1 Modified: hwloc/trunk/PKGBUILD ----------+ PKGBUILD | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-01-25 20:55:25 UTC (rev 315460) +++ PKGBUILD 2018-01-26 01:04:32 UTC (rev 315461) @@ -1,36 +1,40 @@ -# $Id$ -# Maintainer : Stéphane Gaudreault <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor: Stéphane Gaudreault <[email protected]> # Contributor: Sylvain HENRY <[email protected]> # Contributor: Hervé YVIQUEL <[email protected]> pkgname=hwloc -pkgver=1.11.8 +pkgver=1.11.9 pkgrel=1 pkgdesc='Portable Hardware Locality is a portable abstraction of hierarchical architectures' +url='https://www.open-mpi.org/projects/hwloc/' arch=('x86_64') -url='http://www.open-mpi.org/projects/hwloc/' license=('BSD') -depends=('numactl' 'libtool') +depends=('numactl' 'libtool' 'libsystemd') +makedepends=('cairo' 'libxml2' 'pciutils' 'systemd') optdepends=('cairo' 'libxml2' 'pciutils') -makedepends=('cairo' 'libxml2' 'pciutils') options=('!docs') -source=(http://www.open-mpi.org/software/hwloc/v1.11/downloads/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('5d6164400a49e2c77a7e1e98dd0247a1f7e6d4cf') +source=(https://www.open-mpi.org/software/hwloc/v1.11/downloads/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('394333184248d63cb2708a976e57f05337d03bb50c33aa3097ff5c5a74a85164') build() { - cd hwloc-$pkgver - ./configure --prefix=/usr --sbindir=/usr/bin --enable-plugins + cd hwloc-${pkgver} + ./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --enable-plugins make } check() { - cd hwloc-$pkgver + cd hwloc-${pkgver} make check } package() { - cd hwloc-$pkgver - make DESTDIR="$pkgdir" install + cd hwloc-${pkgver} + make DESTDIR="${pkgdir}" install + install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}" +} - install -Dm644 COPYING "$pkgdir"/usr/share/licenses/hwloc/LICENSE -} +# vim: ts=2 sw=2 et:
