blob: 8ec9c460bd41027aed10ad9183c67dd6763f4184 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD$
PORTNAME= jimtcl
PORTVERSION= 0.76
CATEGORIES= lang tcl
MAINTAINER= bapt@FreeBSD.org
COMMENT= Small footprint implementation of the Tcl programming language
LICENSE= BSD2CLAUSE
USE_GITHUB= yes
GH_ACCOUNT= msteveb
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --full \
--enable-utf8 \
--enable-shared \
--disable-docs
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jimsh \
${STAGEDIR}${PREFIX}/lib/libjim.so.0.76
.include <bsd.port.mk>
|