2012-08-01 19:46:05 +00:00
|
|
|
buildarch=18
|
2012-03-17 18:53:40 +00:00
|
|
|
|
|
|
|
pkgname=raspberrypi-firmware
|
2012-12-29 11:02:25 +00:00
|
|
|
pkgver=20121229
|
2012-07-26 19:51:02 +00:00
|
|
|
pkgrel=1
|
2012-03-17 18:53:40 +00:00
|
|
|
pkgdesc="Firmware files for Raspberry Pi"
|
|
|
|
arch=('any')
|
|
|
|
url="https://github.com/raspberrypi/firmware"
|
2012-03-17 19:27:32 +00:00
|
|
|
makedepends=('git')
|
2012-03-17 18:53:40 +00:00
|
|
|
license=('custom')
|
|
|
|
options=(!strip)
|
2012-05-18 22:58:41 +00:00
|
|
|
_gitroot=git://github.com/raspberrypi/firmware.git
|
|
|
|
_gitname=firmware
|
2012-11-26 00:17:26 +00:00
|
|
|
provides=('raspberrypi-firmware')
|
2012-11-26 10:19:42 +00:00
|
|
|
conflicts=('raspberrypi-firmware')
|
2012-05-18 22:58:41 +00:00
|
|
|
build() {
|
|
|
|
msg "Connecting to GIT server...."
|
|
|
|
|
|
|
|
if [[ -d "$_gitname" ]]; then
|
|
|
|
cd "$_gitname" && git pull origin
|
|
|
|
msg "The local files are updated."
|
|
|
|
else
|
|
|
|
git clone --depth 1 "$_gitroot" "$_gitname"
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg "GIT checkout done or server timeout"
|
|
|
|
|
|
|
|
rm -f "${srcdir}"/firmware/boot/kernel.img
|
|
|
|
}
|
|
|
|
|
2012-03-17 18:53:40 +00:00
|
|
|
package() {
|
2012-07-28 22:39:26 +00:00
|
|
|
cp -R "${srcdir}"/firmware/boot "${pkgdir}"/boot
|
|
|
|
mkdir -p "${pkgdir}"/opt/vc
|
2012-08-07 16:03:08 +00:00
|
|
|
|
2012-08-09 21:17:48 +00:00
|
|
|
if [[ $CARCH == "arm" ]]; then
|
|
|
|
cp -R "${srcdir}"/firmware/opt/vc/{bin,include,lib,sbin,LICENCE} "${pkgdir}"/opt/vc
|
|
|
|
elif [[ $CARCH == "armv6h" ]]; then
|
|
|
|
cp -R "${srcdir}"/firmware/hardfp/opt/vc/{bin,include,lib,sbin,LICENCE} "${pkgdir}"/opt/vc
|
|
|
|
fi
|
2012-03-17 18:53:40 +00:00
|
|
|
}
|