Date: Monday, October 3, 2022 @ 18:03:18
Author: tpowa
Revision: 457137
archrelease: copy trunk to testing-any
Added:
hwdata/repos/testing-any/
hwdata/repos/testing-any/PKGBUILD
(from rev 457136, hwdata/trunk/PKGBUILD)
hwdata/repos/testing-any/keys/
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: hwdata/repos/testing-any/PKGBUILD (from rev 457136,
hwdata/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2022-10-03 18:03:18 UTC (rev 457137)
@@ -0,0 +1,26 @@
+# Maintainer: Tobias Powalowski <[email protected]>
+pkgname=hwdata
+pkgver=0.363
+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/
+}