26 lines
819 B
Bash
26 lines
819 B
Bash
# Template file for 'atf-rk3328-bl31'
|
|
pkgname=atf-rk3328-bl31
|
|
version=2.7
|
|
revision=1
|
|
archs="aarch64*"
|
|
short_desc="ARM Trusted Firmware for Rockchip rk3328 boards (ARMv8, bl31 option)"
|
|
maintainer="Cameron Nemo <cam@nohom.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://developer.trustedfirmware.org/dashboard/view/6/"
|
|
distfiles="https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-${version}.tar.gz"
|
|
checksum=53422dc649153838e03820330ba17cb10afe3e330ecde0db11e4d5f1361a33e6
|
|
nostrip=yes
|
|
|
|
do_build() {
|
|
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
if [ "$CROSS_BUILD" ]; then
|
|
export CROSS_COMPILE=${XBPS_CROSS_TRIPLET}-
|
|
fi
|
|
make ${makejobs} PLAT=rk3328 bl31
|
|
}
|
|
|
|
do_install() {
|
|
vinstall build/rk3328/release/bl31/bl31.elf 0755 usr/lib/trusted-firmware-a/rk3328
|
|
vlicense docs/license.rst
|
|
}
|