35 lines
975 B
Bash
35 lines
975 B
Bash
# Template file for 'rpi-firmware'
|
|
_githash="cb2ffaa5503ac53039d40715965480dd66f0aa20"
|
|
_gitshort="${_githash:0:7}"
|
|
|
|
pkgname=rpi-firmware
|
|
version=20160205
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="firmware-${_githash}"
|
|
short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="3-clause-BSD"
|
|
homepage="https://github.com/raspberrypi/firmware"
|
|
distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
|
|
checksum=63c53eafa1f4d6805ad7a922bb45d3906119a2bce0f2d1d7a316c98d41af6e2c
|
|
|
|
conf_files="/boot/cmdline.txt /boot/config.txt"
|
|
|
|
do_install() {
|
|
rm -f boot/*.img
|
|
rm -rf boot/overlays
|
|
rm -f boot/*.dtb
|
|
rm -f boot/COPYING.linux
|
|
|
|
vmkdir boot
|
|
cp -R boot/* ${DESTDIR}/boot
|
|
|
|
vmkdir usr/share/licenses/${pkgname}
|
|
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
|
|
# Install configuration files.
|
|
vinstall ${FILESDIR}/cmdline.txt 644 boot
|
|
vinstall ${FILESDIR}/config.txt 644 boot
|
|
}
|