lang/mujs: Enable the static library; Strip the shared library.

This commit is contained in:
Yuri Victorovich 2019-11-12 02:53:11 +00:00
parent 04c77ece47
commit 75777eba40
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=517301

View File

@ -2,6 +2,7 @@
PORTNAME= mujs
DISTVERSION= 1.0.6
PORTREVISION= 1
CATEGORIES= lang devel
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/
@ -17,8 +18,8 @@ USES= compiler:c11 gmake readline # c11 is induced by the FreeBSD headers via i
USE_GITHUB= yes
GH_ACCOUNT= ccxvii
USE_LDCONFIG= yes
ALL_TARGET= shared
INSTALL_TARGET= install-shared
ALL_TARGET= shared static
INSTALL_TARGET= install-shared install-static
.if defined(WITH_DEBUG) # this project manages its build options itself
MAKE_ARGS= build=debug
@ -27,6 +28,10 @@ MAKE_ARGS= build=debug
PLIST_FILES= bin/mujs \
include/mujs.h \
lib/libmujs.so \
lib/libmujs.a \
libdata/pkgconfig/mujs.pc
post-install: # https://github.com/ccxvii/mujs/issues/99
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmujs.so
.include <bsd.port.mk>