jobcore/hwdata/PKGBUILD

35 lines
868 B
Bash
Raw Normal View History

2022-03-20 13:19:37 +01:00
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=hwdata
2022-09-08 11:56:29 +02:00
pkgver=0.362
2022-03-20 13:19:37 +01:00
pkgrel=01
pkgdesc="hardware identification databases"
makedepends=('git')
replaces=('hwids')
conflicts=(hwids)
url=https://github.com/vcrhonek/hwdata
arch=('any')
source=("git+https://github.com/vcrhonek/hwdata.git#tag=v${pkgver}?signed")
package() {
cd hwdata
for ids in pci.ids pnp.ids usb.ids; do
install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
done
}
#---- license gpg-key sha256sums ----
license=('GPL2')
validpgpkeys=('3C40194FB79138CE0F78FD4919C2F062574F5403') # Vitezslav Crhonek
sha256sums=(SKIP)
2022-05-02 21:26:45 +02:00