summaryrefslogtreecommitdiff
path: root/lang/mujs/Makefile
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-03-17 16:07:29 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-03-17 16:07:29 +0000
commit76a2f1729986ddf4f2cb472cfa2807ef82d38280 (patch)
tree39dcd6521a36a0963c1b34b7d5393e815d420b55 /lang/mujs/Makefile
parentdevel/eric6: update to 18.03 (diff)
New port: lang/mujs: Embeddable Javascript interpreter in C
Notes
Notes: svn path=/head/; revision=464830
Diffstat (limited to 'lang/mujs/Makefile')
-rw-r--r--lang/mujs/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/lang/mujs/Makefile b/lang/mujs/Makefile
new file mode 100644
index 000000000000..ff7f203d8a8a
--- /dev/null
+++ b/lang/mujs/Makefile
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME= mujs
+DISTVERSION= 1.0.3
+CATEGORIES= lang devel
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= Embeddable Javascript interpreter in C
+
+LICENSE= ISCL
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+USES= gmake
+USE_GITHUB= yes
+GH_ACCOUNT= ccxvii
+USE_LDCONFIG= yes
+ALL_TARGET= default
+
+PLIST_FILES= bin/mujs \
+ include/mujs.h \
+ lib/libmujs.so \
+ libdata/pkgconfig/mujs.pc
+
+post-install:
+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmujs.so
+
+.include <bsd.port.mk>