mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
2fd63b868b
PR: 226214 Submitted by: Neal Nelson <ports@nicandneal.net> (maintainer) Approved by: tcberner (mentor, implicit)
29 lines
564 B
Makefile
29 lines
564 B
Makefile
# Created by: ports@nicandneal.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nimble
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.8.10
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@nicandneal.net
|
|
COMMENT= Package manager for the Nim programming language
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= nim:lang/nim
|
|
RUN_DEPENDS= nim:lang/nim
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= nim-lang
|
|
|
|
PLIST_FILES= bin/nimble
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && nim c --parallelBuild=${MAKE_JOBS_NUMBER} --path:${LOCALBASE}/nim src/nimble
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/nimble ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|