* update pciutils to 3.13.0-1

This commit is contained in:
Alexander Baldeck 2024-07-17 11:09:46 +02:00
parent cb18edc88a
commit be2f7e8bd7

View File

@ -1,28 +1,27 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=pciutils
pkgver=3.12.0
pkgver=3.13.0
pkgrel=1
pkgdesc="PCI bus configuration space access library and tools"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=('GPL2')
license=('GPL-2.0-only')
url="https://mj.ucw.cz/sw/pciutils/"
depends=('glibc' 'hwdata' 'kmod')
makedepends=('git')
optdepends=('which: for update-pciids'
'grep: for update-pciids'
'curl: for update-pciids')
source=(#ftp://ftp.kernel.org/pub/software/utils/${pkgname}/${pkgname}-${pkgver}.tar.bz2
https://mj.ucw.cz/download/linux/pci/${pkgname}-${pkgver}.tar.gz{,.sign})
#git+https://github.com/pciutils/pciutils.git#tag=v$pkgver?signed)
source=(
git+https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git#tag=v$pkgver?signed
)
validpgpkeys=(
'C466A56CADA981F4297D20C31F3D0761D9B65F0B' # Martin Mares <mj@ucw.cz>
)
sha256sums=('827a641d2016a15f0b959804daa5a05f055d0f91d58a70d32ac41ce7ef94164e'
'SKIP')
sha256sums=('a198253ac31ee593aeaa4e84c4393f7ad9b1e513ebc6f85c42802dc4c744691d')
build() {
cd $pkgname-$pkgver
cd $pkgname
make OPT="${CFLAGS} -fPIC -DPIC" ZLIB=no SHARED=no PREFIX=/usr SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man SBINDIR=/usr/bin lib/libpci.a
cp lib/libpci.a "${srcdir}/"
make clean
@ -30,7 +29,7 @@ build() {
}
package() {
cd $pkgname-$pkgver
cd $pkgname
make SHARED=yes PREFIX=/usr SBINDIR=/usr/bin SHAREDIR=/usr/share/hwdata MANDIR=/usr/share/man DESTDIR="${pkgdir}" install install-lib
rm -rf "$pkgdir"/usr/share/hwdata
}