mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:47:13 +08:00
23 lines
755 B
Bash
23 lines
755 B
Bash
# $Id: $
|
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=iwlwifi-5150-ucode
|
|
pkgver=8.24.2.2
|
|
pkgrel=2
|
|
pkgdesc="Intel wireless firmware for Intel Wireless WiFi 5150AGN"
|
|
arch=('any')
|
|
url="http://intellinuxwireless.org/?p=iwlwifi"
|
|
license=('custom')
|
|
depends=()
|
|
source=(http://intellinuxwireless.org/iwlwifi/downloads/${pkgname}-${pkgver}.tgz)
|
|
md5sums=('f9cee16e455e8046b1bf62c93f882d5d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
# Install firmware
|
|
install -D -m 644 iwlwifi-5150-2.ucode "${pkgdir}/lib/firmware/iwlwifi-5150-2.ucode" || return 1
|
|
# Install license
|
|
install -D -m 644 LICENSE.iwlwifi-5150-ucode "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
|
|
}
|