24 lines
440 B
Makefile
24 lines
440 B
Makefile
|
COMMENT = access the v8 javascript interpreter from ruby
|
||
|
|
||
|
DISTNAME = libv8-3.16.14.18
|
||
|
REVISION = 1
|
||
|
CATEGORIES = devel lang
|
||
|
|
||
|
HOMEPAGE = https://github.com/cowboyd/libv8
|
||
|
|
||
|
# MIT License
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
MODULES = lang/ruby
|
||
|
|
||
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
||
|
RUN_DEPENDS = lang/libv8
|
||
|
|
||
|
CONFIGURE_STYLE = ruby gem ext
|
||
|
CONFIGURE_ARGS = --with-system-v8
|
||
|
|
||
|
post-install:
|
||
|
rm -r ${PREFIX}/${GEM_LIB}/gems/${DISTNAME}/vendor/
|
||
|
|
||
|
.include <bsd.port.mk>
|