core/hwids/PKGBUILD
2014-02-25 23:49:48 +00:00

23 lines
511 B
Bash

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