mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
28 lines
463 B
Makefile
28 lines
463 B
Makefile
# $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>
|