mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
26 lines
742 B
Bash
26 lines
742 B
Bash
# $Id: PKGBUILD 59427 2009-11-23 20:20:15Z giovanni $
|
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=ipw2200-fw
|
|
pkgver=3.1
|
|
pkgrel=2
|
|
pkgdesc="Firmware for the Intel PRO/Wireless 2200BG"
|
|
arch=('any')
|
|
url='http://ipw2200.sourceforge.net/'
|
|
license=('custom')
|
|
depends=()
|
|
source=(http://bughost.org/firmware/${pkgname}-${pkgver}.tgz)
|
|
replaces=('ipw2200')
|
|
md5sums=('eaba788643c7cc7483dd67ace70f6e99')
|
|
|
|
build() {
|
|
cd "${srcdir}/ipw2200-fw-${pkgver}"
|
|
# Install firmware
|
|
for i in ipw*.fw; do
|
|
install -D -m 644 $i "${pkgdir}/lib/firmware/$i"
|
|
done
|
|
# Install license
|
|
install -D -m 644 LICENSE.ipw2200-fw "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|