mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-25 02:52:16 +08:00
23 lines
826 B
Bash
23 lines
826 B
Bash
# $Id: PKGBUILD 59385 2009-11-23 10:35:44Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Ralf Barth <archlinux dot org at haggy dot org>
|
|
|
|
pkgname=iwlwifi-1000-ucode
|
|
pkgver=128.50.3.1
|
|
pkgrel=1
|
|
pkgdesc="Intel wireless firmware for Intel's WiFi Link 1000BGN wireless devices"
|
|
arch=('any')
|
|
url="http://intellinuxwireless.org/?p=iwlwifi"
|
|
license=('custom')
|
|
depends=()
|
|
source=(http://intellinuxwireless.org/iwlwifi/downloads/${pkgname}-${pkgver}.tgz)
|
|
md5sums=('cfad8d5a7651dde665c5c23e8209c35d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
# Install firmware
|
|
install -D -m 644 iwlwifi-1000-3.ucode "${pkgdir}/lib/firmware/iwlwifi-1000-3.ucode" || return 1
|
|
# Install license
|
|
install -D -m 644 LICENSE.iwlwifi-1000-ucode "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|