forked from Lainports/freebsd-ports
Red Arrow is the Ruby bindings of Apache Arrow. Red Arrow is based on GObject Introspection. Apache Arrow is an in-memory columnar data store. It's used by many products for data analytics. GObject Introspection is a middleware for language bindings of C library. GObject Introspection can generate language bindings automatically at runtime. Red Arrow uses Apache Arrow GLib and gobject-introspection gem to generate Ruby bindings of Apache Arrow. See also: https://github.com/apache/arrow/tree/master/ruby/red-arrow
25 lines
674 B
Makefile
25 lines
674 B
Makefile
PORTNAME= red-arrow
|
|
PORTVERSION= 8.0.0
|
|
CATEGORIES= databases rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Ruby bindings of Apache Arrow
|
|
WWW= https://arrow.apache.org/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib
|
|
RUN_DEPENDS= rubygem-bigdecimal>=2.0.3:math/rubygem-bigdecimal \
|
|
rubygem-extpp>=0.0.7:devel/rubygem-extpp \
|
|
rubygem-gio2>=3.5.0:devel/rubygem-gio2 \
|
|
rubygem-native-package-installer>=0:devel/rubygem-native-package-installer \
|
|
rubygem-pkg-config>=0:devel/rubygem-pkg-config \
|
|
|
|
USES= gem localbase
|
|
USE_RUBY= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
.include <bsd.port.mk>
|