core/hwids/PKGBUILD

23 lines
511 B
Bash
Raw Normal View History

#
# Core Packages for Chakra, part of chakra-project.org
#
2012-09-09 12:17:16 +08:00
# maintainer: abveritas@chakra-project.org
pkgname=hwids
2014-02-26 07:49:48 +08:00
pkgver=20140222
pkgrel=1
pkgdesc="hardware identification databases"
2012-09-09 12:17:16 +08:00
url="https://github.com/gentoo/hwids"
license=('GPL2')
arch=('any')
2012-09-09 12:17:16 +08:00
source=("https://github.com/gentoo/${pkgname}/tarball/${pkgname}-${pkgver}")
2014-02-26 07:49:48 +08:00
md5sums=('3cfc6640ce4c22ddca75218d4d9e3a31')
package() {
cd ${srcdir}/*
2012-12-05 09:16:09 +08:00
for ids in pci.ids usb.ids; do
install -Dm644 "$ids" "${pkgdir}/usr/share/hwdata/${ids}"
done
}