dev #2

Merged
wyj merged 232 commits from dev into main 2026-01-13 22:39:32 -05:00
Showing only changes of commit 148541fee7 - Show all commits
+24
View File
@@ -0,0 +1,24 @@
pkgname=hwdata
pkgver=0.398
pkgdesc="hardware identification databases"
homepage=https://github.com/vcrhonek/hwdata
license=('GPL-2.0-or-later')
arch=('any')
sources=("${pkgname}-${pkgver}.tar.gz")
urls=("https://github.com/vcrhonek/hwdata/archive/v${pkgver}/${sources[0]}")
md5sums=("1ce78576cdde13f0e1953445a98bf173")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr --disable-blacklist
}
src_install() {
make DESTDIR="${pkgdir}" install
}
# vim:ft=sh syn=sh et sw=2: