diff options
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-ffi-compiler/Makefile | 22 | ||||
-rw-r--r-- | devel/rubygem-ffi-compiler/distinfo | 2 | ||||
-rw-r--r-- | devel/rubygem-ffi-compiler/pkg-descr | 6 |
4 files changed, 31 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 0208c8d9ef5a..5be936a4a09c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4440,6 +4440,7 @@ SUBDIR += rubygem-fastthread SUBDIR += rubygem-fattr SUBDIR += rubygem-ffi + SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-file-tail SUBDIR += rubygem-filemagic diff --git a/devel/rubygem-ffi-compiler/Makefile b/devel/rubygem-ffi-compiler/Makefile new file mode 100644 index 000000000000..07d27883958a --- /dev/null +++ b/devel/rubygem-ffi-compiler/Makefile @@ -0,0 +1,22 @@ +# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= ffi-compiler +PORTVERSION= 0.1.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Ruby FFI library + +LICENSE= APACHE20 + +RUN_DEPENDS= rubygem-ffi>=1.0.0:${PORTSDIR}/devel/rubygem-ffi \ + rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake + +USE_RAKE= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-ffi-compiler/distinfo b/devel/rubygem-ffi-compiler/distinfo new file mode 100644 index 000000000000..4574c2af9b6d --- /dev/null +++ b/devel/rubygem-ffi-compiler/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/ffi-compiler-0.1.3.gem) = c46ca2599c43a1f553550a5e861902fd457eff1eb824ef20d41d23dd08dc1728 +SIZE (rubygem/ffi-compiler-0.1.3.gem) = 13824 diff --git a/devel/rubygem-ffi-compiler/pkg-descr b/devel/rubygem-ffi-compiler/pkg-descr new file mode 100644 index 000000000000..5281bb8f6c31 --- /dev/null +++ b/devel/rubygem-ffi-compiler/pkg-descr @@ -0,0 +1,6 @@ +ffi-compiler is a ruby library for automating compilation of native libraries +for use with ffi. To use, define your own ruby->native API using ffi, implement +it in C, then use ffi-compiler to compile it. + +WWW: https://github.com/ffi/ffi-compiler +RG: https://rubygems.org/gems/ffi-compiler |