mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
38 lines
835 B
Makefile
38 lines
835 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= llbuild
|
|
DISTVERSIONPREFIX= swift-DEVELOPMENT-
|
|
DISTVERSION= SNAPSHOT-2017-12-10
|
|
DISTVERSIONSUFFIX= -a
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= jonathan@FreeBSD.org
|
|
COMMENT= Low-level build system, used by the Swift Package Manager
|
|
|
|
LICENSE= APACHE20 BSD3CLAUSE NCSA
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt
|
|
|
|
BROKEN_aarch64= fails to link: undefined symbol: sbrk
|
|
BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wdocumentation"
|
|
|
|
LIB_DEPENDS= libsqlite3.so:databases/sqlite3
|
|
|
|
USES= cmake
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= apple
|
|
GH_PROJECT= swift-llbuild
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= CONTRIBUTING.md README.md
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|