PKGBUILDs/alarm/raspberrypi-firmware/PKGBUILD

40 lines
963 B
Bash
Raw Normal View History

buildarch=18
2012-03-17 18:53:40 +00:00
pkgname=raspberrypi-firmware
pkgver=20120807
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"
makedepends=('git')
2012-03-17 18:53:40 +00:00
license=('custom')
options=(!strip)
install=${pkgname}.install
_gitroot=git://github.com/raspberrypi/firmware.git
_gitname=firmware
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() {
cp -R "${srcdir}"/firmware/boot "${pkgdir}"/boot
mkdir -p "${pkgdir}"/opt/vc
[[ $CARCH == "arm" ]] && cp -R "${srcdir}"/firmware/opt/vc/{bin,include,lib,sbin,LICENCE} "${pkgdir}"/opt/vc
[[ $CARCH == "armv6h" ]] && cp -R "${srcdir}"/firmware/hardfp/opt/vc/{bin,include,lib,sbin,LICENCE} "${pkgdir}"/opt/vc
2012-03-17 18:53:40 +00:00
}