== DESCRIPTION: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code. Moreover, a Ruby-FFI extension works without changes on Ruby and JRuby. Discover why should you write your next extension using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi]. == FEATURES/PROBLEMS: * It has a very intuitive DSL * It supports all C native types * It supports C structs (also nested), enums and global variables * It supports callbacks * It has smart methods to handle memory management of pointers and structs
15 lines
382 B
Makefile
15 lines
382 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/09/23 07:18:01 taca Exp $
|
|
|
|
DISTNAME= ffi-0.6.3
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://wiki.github.com/ffi/ffi
|
|
COMMENT= Loading dynamic libraries, binding functions within them
|
|
LICENSE= mit
|
|
|
|
USE_RAKE= YES
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../devel/libffi/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|