mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
409 B
Bash
18 lines
409 B
Bash
plugrel=1
|
|
noautobuild=1
|
|
|
|
pkgname=raspberrypi-firmware
|
|
pkgver=20120518
|
|
pkgrel=1
|
|
pkgdesc="Firmware files for Raspberry Pi"
|
|
arch=('any')
|
|
url="https://github.com/raspberrypi/firmware"
|
|
makedepends=('git')
|
|
license=('custom')
|
|
options=(!strip)
|
|
|
|
package() {
|
|
git clone --depth 1 git://github.com/raspberrypi/firmware.git
|
|
rm "${srcdir}"/firmware/boot/kernel.img
|
|
cp -R "${srcdir}"/firmware/{boot,opt} "${pkgdir}"
|
|
}
|