blob: 7e97cf45ce27eb1c5faad3c14459f6192547ad31 (
plain)
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
26
|
# $FreeBSD$
PORTNAME= jimtcl
PORTVERSION= 0.77
CATEGORIES= lang tcl
MAINTAINER= ports@FreeBSD.org
COMMENT= Small footprint implementation of the Tcl programming language
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
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.*
.include <bsd.port.mk>
|