core/ipw2100-fw/PKGBUILD
2012-06-08 20:57:35 +00:00

26 lines
568 B
Bash

# Core packages for Chakra
pkgname=ipw2100-fw
pkgver=1.3
pkgrel=6
pkgdesc="Intel Centrino Drivers firmware for IPW2100"
arch=('any')
url="http://ipw2100.sourceforge.net/"
license=('custom')
depends=()
replaces=('ipw2100')
source=(http://bughost.org/firmware/${pkgname}-${pkgver}.tgz)
md5sums=('46aa75bcda1a00efa841f9707bbbd113')
package() {
cd "${srcdir}"
# Install firmware
for i in *.fw
do
install -D -m 644 $i "${pkgdir}/usr/lib/firmware/$i"
done
# Install license
install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}