21 lines
609 B
Bash
21 lines
609 B
Bash
|
# Maintainer: Future Linux Team <futurelinux@163.com>
|
||
|
|
||
|
pkgname=linux-firmware
|
||
|
pkgver=20240312
|
||
|
pkgrel=1
|
||
|
pkgdesc="Firmware files for Linux"
|
||
|
arch=('x86_64')
|
||
|
url="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/"
|
||
|
license=('GPL2' 'GPL3' 'custom')
|
||
|
makedepends=('rdfind')
|
||
|
options=('!strip')
|
||
|
source=(https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.gz)
|
||
|
sha256sums=(e9c37d640e21d27a62d543978e496a56d3ca3730c7141a7b10c0be146e0829c6)
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
|
||
|
make DESTDIR=${pkgdir} FIRMWAREDIR=/usr/lib/firmware install
|
||
|
}
|
||
|
|