2012-03-17 18:53:40 +00:00
|
|
|
plugrel=1
|
|
|
|
noautobuild=1
|
|
|
|
|
|
|
|
pkgname=raspberrypi-firmware
|
2012-04-08 20:23:26 +00:00
|
|
|
pkgver=20120408
|
2012-03-17 18:53:40 +00:00
|
|
|
pkgrel=1
|
|
|
|
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')
|
|
|
|
provides=('raspberrypi-firmware')
|
|
|
|
conflicts=()
|
|
|
|
backup=(boot/{cmdline,config}.txt)
|
|
|
|
replaces=()
|
|
|
|
options=(!strip)
|
|
|
|
source=(config.txt)
|
|
|
|
md5sums=('0745afd44de4fe969b4ecb8d47d6a1c0')
|
|
|
|
|
|
|
|
package() {
|
|
|
|
git clone git://github.com/raspberrypi/firmware.git
|
|
|
|
rm "${srcdir}"/firmware/boot/kernel.img
|
|
|
|
cat "${srcdir}"/config.txt > "${srcdir}"/firmware/boot/config.txt
|
|
|
|
cp -R "${srcdir}"/firmware/{boot,opt} "${pkgdir}"
|
|
|
|
}
|
|
|
|
|