25 lines
544 B
Bash
25 lines
544 B
Bash
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:
|