1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-04-03 09:39:47 +00:00

Simple meson buildfile - should work for any system with parquet 1.4-compatible libraries

WIP - Add dockerfile for local cross-distro testing
This commit is contained in:
Addie Morrison 2019-12-08 15:52:15 -06:00
parent 226dc0b905
commit ae194c69c5
4 changed files with 32 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
#FROM centos:7
#RUN yum install -y epel-release
#RUN yum install -y sqlite-devel
#RUN yum install -y gcc gcc-c++ meson
#COPY ci/arrow-centos.repo /etc/yum.repos.d/Apache-Arrow.repo
#RUN yum install -y parquet-devel
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config libsqlite3-dev libicu-dev gcc g++ meson
COPY ci/arrow-ubuntu16.04.list /etc/apt/sources.list.d/apache-arrow.list
RUN curl https://dist.apache.org/repos/dist/dev/arrow/KEYS | apt-key add - && apt-get update && apt-get install -y libparquet-dev
#https://apache.bintray.com/arrow/centos/7/x86_64/Packages/parquet-devel-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/parquet-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-glib-libs-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-glib-devel-0.14.1-1.el7.x86_64.rpm https://apache.bintray.com/arrow/centos/7/x86_64/Packages/arrow-devel-0.14.1-1.el7.x86_64.rpm
#COPY ci/arrow-centos.repo //yum.repos.d/Apache-Arrow.repo
#RUN yum install -y epel-release && yum install -y --enablerepo=epel parquet-devel
WORKDIR /src/
VOLUME /src
CMD mkdir builddir && meson builddir && cd builddir && ninja

6
ci/arrow-centos.repo Normal file
View File

@ -0,0 +1,6 @@
[apache-arrow]
name=Apache Arrow
baseurl=https://dl.bintray.com/apache/arrow/centos/\$releasever/\$basearch/
gpgcheck=1
enabled=1
gpgkey=https://dl.bintray.com/apache/arrow/centos/RPM-GPG-KEY-apache-arrow

View File

@ -0,0 +1 @@
deb [arch=amd64] https://dl.bintray.com/apache/arrow/ubuntu/ xenial main deb-src https://dl.bintray.com/apache/arrow/ubuntu/ xenial main

8
meson.build Normal file
View File

@ -0,0 +1,8 @@
project('sqlite-parquet-vtable', 'c', 'cpp', default_options:['c_std=c11', 'cpp_std=c++11'])
parquet = dependency('parquet')
sqlite = dependency('sqlite3')
icu = dependency('icu-i18n')
shared_library('sqlite-parquet-vtable',
dependencies:[parquet, sqlite, icu],
sources: ['src/parquet.cc', 'src/parquet_cursor.cc', 'src/parquet_filter.cc', 'src/parquet_table.cc']
)