Date: Monday, January 10, 2022 @ 20:09:12 Author: tpowa Revision: 434167
newpkg: replaced hwids Added: hwdata/ hwdata/repos/ hwdata/trunk/ hwdata/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) Added: hwdata/trunk/PKGBUILD =================================================================== --- hwdata/trunk/PKGBUILD (rev 0) +++ hwdata/trunk/PKGBUILD 2022-01-10 20:09:12 UTC (rev 434167) @@ -0,0 +1,20 @@ +# Maintainer: Tobias Powalowski <[email protected]> +pkgname=hwdata +pkgver=0.355 +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}") +sha256sums=('SKIP') + +package() { + cd hwdata + + for ids in pci.ids pnp.ids usb.ids; do + install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}" + done +}
