core/hwids/PKGBUILD

22 lines
500 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
2012-10-30 02:22:02 +08:00
pkgver=20121024
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}")
2012-10-30 02:22:02 +08:00
md5sums=('f0193c0b48db44ebee8c5e666295768c')
package() {
cd ${srcdir}/*
mkdir -p "${pkgdir}/usr/share/hwdata"
cp pci.ids usb.ids "${pkgdir}/usr/share/hwdata/"
}
2012-09-09 12:17:16 +08:00