mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
37 lines
682 B
Makefile
37 lines
682 B
Makefile
PORTNAME= jimtcl
|
|
PORTVERSION= 0.83
|
|
CATEGORIES= lang tcl
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Small footprint implementation of the Tcl programming language
|
|
WWW= http://jim.tcl.tk
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= ssl
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= msteveb
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--enable-utf8 \
|
|
--enable-shared
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
DOCS_CONFIGURE_ENABLE= docs
|
|
DOCS_CONFIGURE_ON= --docdir=${DOCSDIR}
|
|
PORTDOCS= *
|
|
|
|
TEST_TARGET= test
|
|
|
|
post-install:
|
|
@${STRIP_CMD} \
|
|
${STAGEDIR}${PREFIX}/bin/jimsh \
|
|
${STAGEDIR}${PREFIX}/lib/libjim.so.${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|