2013-02-19 17:30:01 +00:00
|
|
|
# Template file for 'rpi-firmware'
|
2014-11-29 15:52:26 +00:00
|
|
|
_githash="c48462f6bb99bff75f04db65c276ab87827b295e"
|
2014-06-01 10:54:27 +00:00
|
|
|
_gitshort="${_githash:0:7}"
|
2014-01-02 16:34:11 +00:00
|
|
|
|
2013-02-19 17:30:01 +00:00
|
|
|
pkgname=rpi-firmware
|
2014-11-29 15:48:00 +00:00
|
|
|
version=20141129
|
2013-02-19 17:30:01 +00:00
|
|
|
revision=1
|
2014-01-02 16:34:11 +00:00
|
|
|
noarch=yes
|
2014-06-27 07:57:18 +00:00
|
|
|
wrksrc="firmware-${_githash}"
|
2014-06-01 10:54:27 +00:00
|
|
|
short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
|
2013-02-19 17:30:01 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-11-07 10:06:00 +00:00
|
|
|
license="Propietary - see /usr/share/licences/${pkgname}/"
|
2013-02-19 17:30:01 +00:00
|
|
|
homepage="https://github.com/raspberrypi/firmware"
|
2014-06-01 10:54:27 +00:00
|
|
|
distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
|
2014-11-29 15:48:00 +00:00
|
|
|
checksum=021818d8992353f43d166bd97b066db5384da2e8ed156422cd59e7806946efa7
|
2013-02-19 17:30:01 +00:00
|
|
|
|
2014-06-01 10:54:27 +00:00
|
|
|
conf_files="/boot/cmdline.txt /boot/config.txt"
|
2014-01-29 14:45:59 +00:00
|
|
|
provides="libEGL-1.0_1 libGLES-1.0_1"
|
|
|
|
replaces="libEGL>=0 libGLES>=0"
|
|
|
|
|
2013-02-19 17:30:01 +00:00
|
|
|
do_install() {
|
|
|
|
rm -f boot/kernel.img
|
2013-05-14 14:17:18 +00:00
|
|
|
rm -f boot/COPYING.linux
|
2013-02-19 17:30:01 +00:00
|
|
|
|
|
|
|
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
|
2014-03-25 15:48:20 +00:00
|
|
|
echo "/opt/vc/lib/" > ${DESTDIR}/etc/ld.so.conf.d/${pkgname}.conf
|
2013-02-19 17:30:01 +00:00
|
|
|
|
|
|
|
vmkdir usr/share/licenses/${pkgname}
|
2013-05-14 14:17:18 +00:00
|
|
|
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
|
|
mv ${DESTDIR}/opt/vc/LICENCE ${DESTDIR}/usr/share/licenses/${pkgname}
|
2013-02-27 22:02:53 +00:00
|
|
|
|
|
|
|
# Install configuration files.
|
|
|
|
vinstall ${FILESDIR}/cmdline.txt 644 boot
|
|
|
|
vinstall ${FILESDIR}/config.txt 644 boot
|
2013-02-19 17:30:01 +00:00
|
|
|
}
|
2014-06-01 10:44:14 +00:00
|
|
|
|
|
|
|
rpi-firmware-src_package() {
|
|
|
|
noarch=yes
|
|
|
|
short_desc+=" - example sources"
|
|
|
|
pkg_install() {
|
|
|
|
vmove opt/vc/src
|
|
|
|
}
|
|
|
|
}
|