mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
alarm/raspberrypi-firmware to 20210426-1
* Supply man pages for aarch64 (do we want to mirror for others)? * Correct source commit for armv7h
This commit is contained in:
parent
c7d965f89c
commit
cfe06e992f
1 changed files with 12 additions and 8 deletions
|
@ -5,10 +5,10 @@
|
|||
buildarch=28
|
||||
|
||||
pkgname=raspberrypi-firmware
|
||||
pkgver=20210319
|
||||
pkgver=20210426
|
||||
pkgrel=1
|
||||
_commitfirmware=496e65477e06172ea20602e365d3790632c3cc06
|
||||
_commituserland=3fd8527eefd8790b4e8393458efc5f94eb21a615
|
||||
_commituserland=45a0022ac64b4d0788def3c5230c972430f6fc23
|
||||
pkgdesc="Firmware tools, libraries, and headers for Raspberry Pi"
|
||||
arch=('armv6h' 'armv7h' 'aarch64')
|
||||
url="https://github.com/raspberrypi/firmware"
|
||||
|
@ -21,7 +21,7 @@ source=('00-raspberrypi-firmware.conf'
|
|||
'10-raspberrypi-firmware.rules'
|
||||
'raspberrypi-firmware.sh')
|
||||
source_armv6h=("https://github.com/raspberrypi/firmware/archive/$_commitfirmware.tar.gz")
|
||||
source_armv7h=("https://github.com/raspberrypi/userland/archive/$_commitfirmware.tar.gz")
|
||||
source_armv7h=("https://github.com/raspberrypi/firmware/archive/$_commitfirmware.tar.gz")
|
||||
source_aarch64=("https://github.com/raspberrypi/userland/archive/$_commituserland.tar.gz"
|
||||
"https://raw.githubusercontent.com/raspberrypi/firmware/master/opt/vc/LICENCE")
|
||||
md5sums=('72e0d5818fc513ece1b964f25f7e7882'
|
||||
|
@ -29,7 +29,7 @@ md5sums=('72e0d5818fc513ece1b964f25f7e7882'
|
|||
'60919cb17f31b4698b6650bbb46f18ed')
|
||||
md5sums_armv6h=('0aa6de64cab765e301662657b85e64c4')
|
||||
md5sums_armv7h=('0aa6de64cab765e301662657b85e64c4')
|
||||
md5sums_aarch64=('9c87248886ff7b2a44d6e3de64734a6e'
|
||||
md5sums_aarch64=('53e67a5a4e36049cc66e40dd8f93f533'
|
||||
'86e53f5f5909ee66900418028de11780')
|
||||
|
||||
build() {
|
||||
|
@ -46,10 +46,10 @@ package() {
|
|||
|
||||
# setup PATH to hit /opt/vc/bin/
|
||||
install -Dt "$pkgdir/etc/profile.d" -m644 raspberrypi-firmware.sh
|
||||
|
||||
mkdir -p "${pkgdir}"/opt/vc
|
||||
|
||||
if [[ "${CARCH}" = 'aarch64' ]]; then
|
||||
mkdir -p "${pkgdir}"/opt/vc
|
||||
|
||||
cd ${srcdir}/userland-${_commituserland}
|
||||
make install DESTDIR="${pkgdir}"
|
||||
install -m644 ../LICENCE "${pkgdir}"/opt/vc/LICENCE
|
||||
|
@ -61,9 +61,13 @@ package() {
|
|||
# Create lib links
|
||||
mkdir -p "${pkgdir}"/etc/ld.so.conf.d/
|
||||
install -m644 ../00-raspberrypi-firmware.conf "${pkgdir}"/etc/ld.so.conf.d/00-raspberrypi-firmware.conf
|
||||
else
|
||||
mkdir -p "${pkgdir}"/opt/vc
|
||||
|
||||
# Install man pages to /usr/share/man/ not to /opt/vc/man/
|
||||
mkdir -p "${pkgdir}"/usr/share/man/man{1,7}
|
||||
mv "${pkgdir}"/opt/vc/man/man1/*.1 "${pkgdir}"/usr/share/man/man1
|
||||
mv "${pkgdir}"/opt/vc/man/man7/*.7 "${pkgdir}"/usr/share/man/man7
|
||||
rm -rf "${pkgdir}"/opt/vc/man
|
||||
else
|
||||
cp -R "${srcdir}"/firmware-${_commitfirmware}/hardfp/opt/vc/{bin,include,lib,LICENCE} "${pkgdir}"/opt/vc
|
||||
|
||||
# Create lib links
|
||||
|
|
Loading…
Reference in a new issue