Files
2026-06-17 11:41:18 -04:00

63 lines
2.3 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim: fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup cmake 1.1
PortGroup github 1.0
PortGroup legacysupport 1.0
PortGroup openssl 1.0
github.setup cwida duckdb 1.5.4 v
github.tarball_from archive
revision 0
homepage https://www.duckdb.org
description \
DuckDB is an embeddable SQL OLAP Database Management System
long_description \
DuckDB is an embedded database designed to execute analytical SQL queries \
fast while embedded in another process. It is designed to be easy to \
install and easy to use. DuckDB has no external dependencies. DuckDB has \
bindings for C/C++, Python and R. DuckDB is developed by the Database \
Architectures group of the CWI.
categories databases
license MIT
maintainers {gmail.com:herby.gillot @herbygillot} \
openmaintainer
checksums rmd160 a8a87d9c9d3e10431da39e98e158508d205446e7 \
sha256 99c36e4bf415f295e19ed67401adb72e075e63e6a0dc3a14312c986e29781fd0 \
size 101078007
patchfiles-append no-ccache.patch \
no-clangd-cache.patch
set python_version 314
set python_branch \
[string index ${python_version} 0].[string range ${python_version} 1 end]
configure.args-append \
-DBUILD_EXTENSIONS='autocomplete\;icu\;parquet\;json' \
-DENABLE_EXTENSION_AUTOLOADING=1 \
-DENABLE_EXTENSION_AUTOINSTALL=1 \
-DOVERRIDE_GIT_DESCRIBE=v${version} \
-DPython3_EXECUTABLE=${prefix}/bin/python${python_branch}
compiler.cxx_standard 2011
depends_build-append \
port:pkgconfig \
port:python${python_version} \
port:zstd
if {[string match *gcc* ${configure.compiler}]} {
# Without the following setting, the build fails miserably at linking with every possible symbol undefined.
# Undefined symbols: __ZNK6duckdb5Value14GetValueUnsafeItEET_v, __ZN6duckdb11LogicalType3MAPES0_S0_ etc.
configure.args-append \
-DEXTENSION_STATIC_BUILD=TRUE
configure.ldflags-append \
-latomic
}