mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
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
11 lines
328 B
Ruby
11 lines
328 B
Ruby
--- ext/arrow/extconf.rb.orig 2022-09-13 15:47:51 UTC
|
|
+++ ext/arrow/extconf.rb
|
|
@@ -65,7 +65,7 @@ unless required_pkg_config_package([
|
|
end
|
|
|
|
[
|
|
- ["glib2", "ext/glib2"],
|
|
+ ["glib2", "lib"],
|
|
].each do |name, relative_source_dir|
|
|
spec = find_gem_spec(name)
|
|
source_dir = File.join(spec.full_gem_path, relative_source_dir)
|