Date: Monday, November 7, 2022 @ 10:23:06
Author: tpowa
Revision: 460841
archrelease: copy trunk to extra-any
Added:
hwdata/repos/extra-any/
hwdata/repos/extra-any/PKGBUILD
(from rev 460840, hwdata/trunk/PKGBUILD)
hwdata/repos/extra-any/keys/
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: hwdata/repos/extra-any/PKGBUILD (from rev 460840, hwdata/trunk/PKGBUILD)
===================================================================
--- extra-any/PKGBUILD (rev 0)
+++ extra-any/PKGBUILD 2022-11-07 10:23:06 UTC (rev 460841)
@@ -0,0 +1,26 @@
+# Maintainer: Tobias Powalowski <[email protected]>
+pkgname=hwdata
+pkgver=0.364
+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')
+
+build() {
+ cd ${pkgname}
+ ./configure --prefix=/usr
+}
+
+package() {
+ cd ${pkgname}
+ make DESTDIR="${pkgdir}" install
+
+ # Do not package blacklist of kernel modules
+ rm -rf "${pkgdir}"/usr/lib/
+}