void-packages/srcpkgs/rpi-firmware/template
2016-03-06 09:02:00 +01:00

34 lines
975 B
Bash

# Template file for 'rpi-firmware'
_githash="845eb064cb52af00f2ea33c0c9c54136f664a3e4"
_gitshort="${_githash:0:7}"
pkgname=rpi-firmware
version=20160306
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=c3f4326423eac452190b3bfd559863209769005c34779d3924880af44992a2d6
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
}