mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 00:47:14 +08:00
23 lines
817 B
Bash
23 lines
817 B
Bash
|
# $Id: PKGBUILD 59408 2009-11-23 18:02:38Z giovanni $
|
||
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
||
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
|
||
|
pkgname=iwlwifi-3945-ucode
|
||
|
pkgver=15.32.2.9
|
||
|
pkgrel=2
|
||
|
pkgdesc="Intel wireless firmware for Intel PRO/Wireless 3945ABG/BG"
|
||
|
arch=('any')
|
||
|
url="http://intellinuxwireless.org/?p=iwlwifi"
|
||
|
license=('custom')
|
||
|
depends=()
|
||
|
source=(http://intellinuxwireless.org/iwlwifi/downloads/${pkgname}-${pkgver}.tgz)
|
||
|
md5sums=('d99a75ab1305d1532a09471b2f9a547a')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
# Install API version 2 firmware
|
||
|
install -D -m 644 iwlwifi-3945-2.ucode "${pkgdir}/lib/firmware/iwlwifi-3945-2.ucode" || return 1
|
||
|
# Install license
|
||
|
install -D -m 644 LICENSE.iwlwifi-3945-ucode "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
||
|
}
|