void-packages/srcpkgs/rpi-firmware/template
Juan RP 1127097037 rpi-firmware: update to upstream git commit e42a747e8d5c4a.
Also remove kernel7.img and dtb files that should be installed by the
rpi-kernel pkg instead.
2015-02-06 10:59:45 +01:00

51 lines
1.4 KiB
Text

# Template file for 'rpi-firmware'
_githash="e42a747e8d5c4a2fb3e837d0924c7cc39999936a"
_gitshort="${_githash:0:7}"
pkgname=rpi-firmware
version=20150206
revision=1
noarch=yes
wrksrc="firmware-${_githash}"
short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
maintainer="Juan RP <xtraeme@gmail.com>"
license="Propietary - see /usr/share/licences/${pkgname}/"
homepage="https://github.com/raspberrypi/firmware"
distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
checksum=a59eb7b1a2238e326d669a4754eec4b5da5e0f9a12e097f2fa64df9c26015fad
conf_files="/boot/cmdline.txt /boot/config.txt"
provides="libEGL-1.0_1 libGLES-1.0_1"
replaces="libEGL>=0 libGLES>=0"
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 opt/vc
cp -R hardfp/opt/vc/{bin,include,lib,sbin,src,LICENCE} ${DESTDIR}/opt/vc
vmkdir etc/ld.so.conf.d
echo "/opt/vc/lib/" > ${DESTDIR}/etc/ld.so.conf.d/${pkgname}.conf
vmkdir usr/share/licenses/${pkgname}
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
mv ${DESTDIR}/opt/vc/LICENCE ${DESTDIR}/usr/share/licenses/${pkgname}
# Install configuration files.
vinstall ${FILESDIR}/cmdline.txt 644 boot
vinstall ${FILESDIR}/config.txt 644 boot
}
rpi-firmware-src_package() {
noarch=yes
short_desc+=" - example sources"
pkg_install() {
vmove opt/vc/src
}
}