ports/devel/gnu-efi/Makefile
Rodrigo Osorio 06df180a9e */*: Update WWW to use HTTPS for sourceforge.net projects
Homepage link is permanent redirected to its HTTPS counterpart
Issue reported by repology : https://repology.org/repository/freebsd/problems

Approved by:	portmgr (blanket)
PR:		274888
2023-11-06 11:03:47 +01:00

34 lines
661 B
Makefile

PORTNAME= gnu-efi
PORTVERSION= 3.0.15
CATEGORIES= devel
MASTER_SITES= SF/gnu-efi
MAINTAINER= egypcio@FreeBSD.org
COMMENT= SDK for EFI applications
WWW= https://gnu-efi.sourceforge.net/
LICENSE= GPLv2
ONLY_FOR_ARCHS= amd64 i386
BUILD_DEPENDS= ${LOCALBASE}/bin/ar:devel/binutils
USES= compiler:c++11-lib gmake tar:bz2
CFLAGS+= -fPIC
CPPFLAGS+= -fPIC
MAKE_ARGS+= CC=${CC} HOSTCC=${CC} AR=${AR}
.include <bsd.port.pre.mk>
.if ${ARCH} == amd64
PLIST_SUB+= ARCH_amd64="" ARCH_i386="@comment "
.elif ${ARCH} == i386
PLIST_SUB+= ARCH_i386="" ARCH_amd64="@comment "
.endif
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.o
.include <bsd.port.post.mk>