1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-15 09:06:40 +00:00
termux-packages/packages/libduckdb/build.sh
Termux Github Actions 894001a6c1 bump(main/libduckdb): 0.9.2
This commit has been automatically submitted by Github Actions.
2023-11-14 12:42:17 +00:00

16 lines
614 B
Bash

TERMUX_PKG_HOMEPAGE=https://duckdb.org/
TERMUX_PKG_DESCRIPTION="An in-process SQL OLAP database management system"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.9.2"
TERMUX_PKG_AUTO_UPDATE=true
# we clone to retain the .git directory, to ensure the version in the built executable is correctly populated
TERMUX_PKG_SRCURL=git+https://github.com/duckdb/duckdb
TERMUX_PKG_DEPENDS="libc++, openssl"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-DBUILD_EXTENSIONS='icu;parquet;httpfs;json;autocomplete'"
termux_step_pre_configure() {
LDFLAGS+=" -llog"
CXXFLAGS+=" -D_GLIBCXX_USE_CXX11_ABI=1"
}