diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-14 16:06:19 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-14 16:06:19 +0000 |
commit | cd19d23292d69f7e2dd6c9c677bf70f89451561a (patch) | |
tree | dfb8fc1114d777545c03f25c7b98bb916a3a3d79 /lang/swift/Makefile | |
parent | 7d308fae0c97111ade6f17cdff0bfd136ba48fc3 (diff) |
Notes
Diffstat (limited to 'lang/swift/Makefile')
-rw-r--r-- | lang/swift/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lang/swift/Makefile b/lang/swift/Makefile index 881bbdc2c7cf..398a4a1174fb 100644 --- a/lang/swift/Makefile +++ b/lang/swift/Makefile @@ -27,6 +27,9 @@ GH_PROJECT= swift:DEFAULT swift-llvm:llvm swift-clang:clang swift-lldb:lldb \ swift-corelibs-xctest:xctest swift-corelibs-foundation:xcfound GH_TAGNAME= swift-${PORTVERSION}-RELEASE:DEFAULT,llvm,clang,lldb,cmark \ swift-DEVELOPMENT-SNAPSHOT-2016-05-03-a:llbuild,swiftpm,xctest,xcfound +GH_SUBDIR= llvm:llvm clang:clang lldb:lldb cmark:cmark llbuild:llbuild \ + swiftpm:swiftpm swift-corelibs-xctest:xctest \ + swift-corelibs-foundation:xcfound WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= iconv libedit ninja perl5 pkgconfig python:3,build sqlite @@ -55,14 +58,6 @@ BROKEN= Does not build post-extract: @${MKDIR} ${WRKSRC} @${MV} ${WRKDIR}/${PORTNAME}-${PORTNAME}-${PORTVERSION}-RELEASE ${WRKSRC}/swift - @${MV} ${WRKSRC_llvm} ${WRKSRC}/llvm - @${MV} ${WRKSRC_clang} ${WRKSRC}/clang - @${MV} ${WRKSRC_lldb} ${WRKSRC}/lldb - @${MV} ${WRKSRC_cmark} ${WRKSRC}/cmark - @${MV} ${WRKSRC_llbuild} ${WRKSRC}/llbuild - @${MV} ${WRKSRC_swiftpm} ${WRKSRC}/swiftpm - @${MV} ${WRKSRC_xctest} ${WRKSRC}/swift-corelibs-xctest - @${MV} ${WRKSRC_xcfound} ${WRKSRC}/swift-corelibs-foundation post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ |