mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
4bc4518f16
PR: 246166 Submitted by: ports@nicandneal.net(maintainer)
30 lines
630 B
Makefile
30 lines
630 B
Makefile
# Created by: ports@nicandneal.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nimble
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.11.2
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ports@nicandneal.net
|
|
COMMENT= Package manager for the Nim programming language
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
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 --nimcache:${WRKSRC}/nimcache src/nimble
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/nimble ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|