void-packages/srcpkgs/rpi-firmware/template
2015-09-20 07:34:26 +02:00

34 lines
975 B
Bash

# Template file for 'rpi-firmware'
_githash="9a21e6ac2397930c23aa69ad3ce3bf1f5e162808"
_gitshort="${_githash:0:7}"
pkgname=rpi-firmware
version=20150920
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=6d348d8a96f45e9d4fbec388ff41f98981b54ab5a4cdea63fb274c64caf99dbe
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
}