mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:07:13 +08:00
22 lines
756 B
Bash
22 lines
756 B
Bash
# $Id: PKGBUILD 59312 2009-11-22 00:30:19Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=iwlwifi-6000-ucode
|
|
pkgver=9.176.4.1
|
|
pkgrel=1
|
|
pkgdesc="Intel wireless firmware for Intel's 6000 Series wireless devices"
|
|
arch=('any')
|
|
url="http://intellinuxwireless.org/?p=iwlwifi"
|
|
license=('custom')
|
|
depends=()
|
|
source=(http://intellinuxwireless.org/iwlwifi/downloads/${pkgname}-${pkgver}.tgz)
|
|
md5sums=('d0489d67d88e681eb3070c57daccfd92')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
# Install firmware
|
|
install -D -m 644 iwlwifi-6000-4.ucode "${pkgdir}/lib/firmware/iwlwifi-6000-4.ucode" || return 1
|
|
# Install license
|
|
install -D -m 644 LICENSE.iwlwifi-6000-ucode "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|