34 lines
868 B
Bash
34 lines
868 B
Bash
#!/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
|
|
pkgver=0.361
|
|
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)
|
|
|