mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
108bd05cd7
This is used on the Arm Models (simulators) Approved by: manu Sponsored by: The FreeBSD Foundation
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
PORTNAME= atf
|
|
PORTVERSION?= ${ATF_VERSION}
|
|
CATEGORIES= sysutils
|
|
PKGNAMESUFFIX?= -${PLAT}
|
|
|
|
MAINTAINER= uboot@FreeBSD.org
|
|
COMMENT= ARM TF-A for platform ${PLAT}
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS+= aarch64-none-elf-gcc:devel/aarch64-none-elf-gcc
|
|
|
|
USES= gmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ARM-software
|
|
GH_PROJECT= arm-trusted-firmware
|
|
GH_TAGNAME= ${ATF_VERSION}
|
|
|
|
SSP_UNSAFE= yes
|
|
MAKE_ENV+= CROSS_COMPILE="aarch64-none-elf-"
|
|
ATF_TARGET?= bl31
|
|
ALL_TARGET= ARCH="aarch64" PLAT=${PLAT} V=1 CFLAGS= HOSTCC=${CC} ${ATF_TARGET}
|
|
|
|
# Default to the latest release
|
|
ATF_VERSION?= v2.5
|
|
|
|
PLIST_FILES?= ${PREFIX}/share/${PORTNAME}-${PLAT}/${BL31:T}
|
|
.if defined(FIP)
|
|
PLIST_FILES+= ${PREFIX}/share/${PORTNAME}-${PLAT}/${FIP:T}
|
|
.endif
|
|
|
|
DESCR?= ${.CURDIR}/pkg-descr
|
|
|
|
NO_ARCH= yes
|
|
|
|
.if !defined(PLAT)
|
|
PLAT= NONE
|
|
IGNORE= is a metaport; there is nothing to build
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}/${PREFIX}/share/${PORTNAME}-${PLAT}/
|
|
${INSTALL_DATA} ${WRKSRC}/build/${PLAT}/release/${BL31} ${STAGEDIR}/${PREFIX}/share/${PORTNAME}-${PLAT}/
|
|
.if defined(FIP)
|
|
${INSTALL_DATA} ${WRKSRC}/build/${PLAT}/release/${FIP} ${STAGEDIR}/${PREFIX}/share/${PORTNAME}-${PLAT}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|