Date: Friday, March 4, 2022 @ 11:16:47 Author: tpowa Revision: 438841
archrelease: copy trunk to testing-any Added: hwdata/repos/testing-any/ hwdata/repos/testing-any/PKGBUILD (from rev 438840, hwdata/trunk/PKGBUILD) ----------+ PKGBUILD | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) Copied: hwdata/repos/testing-any/PKGBUILD (from rev 438840, hwdata/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2022-03-04 11:16:47 UTC (rev 438841) @@ -0,0 +1,21 @@ +# Maintainer: Tobias Powalowski <tp...@archlinux.org> +pkgname=hwdata +pkgver=0.357 +pkgrel=1 +pkgdesc="hardware identification databases" +makedepends=('git') +replaces=('hwids') +url=https://github.com/vcrhonek/hwdata +license=('GPL2') +arch=('any') +source=("git+https://github.com/vcrhonek/hwdata.git#tag=v${pkgver}?signed") +validpgpkeys=('3C40194FB79138CE0F78FD4919C2F062574F5403') # Vitezslav Crhonek +sha256sums=('SKIP') + +package() { + cd hwdata + + for ids in pci.ids pnp.ids usb.ids; do + install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}" + done +}