Skip to content

Commit

Permalink
duckdb: update to 0.1.9 (#7562)
Browse files Browse the repository at this point in the history
  • Loading branch information
herbygillot committed Jun 28, 2020
1 parent a2e29ae commit dc8289c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions databases/duckdb/Portfile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PortGroup github 1.0
PortGroup cmake 1.1 PortGroup cmake 1.1
PortGroup legacysupport 1.0 PortGroup legacysupport 1.0


github.setup cwida duckdb 0.1.8 v github.setup cwida duckdb 0.1.9 v


homepage https://www.duckdb.org/ homepage https://www.duckdb.org/


Expand All @@ -25,9 +25,9 @@ categories databases
platforms darwin platforms darwin
license MIT license MIT


checksums rmd160 5f67598afe8e5e4fbff8eb7aa7da76a3fb6ddc74 \ checksums rmd160 b3fbc35df8f354d5f9656eccace50d23b2de1df0 \
sha256 413a8521ada73e37ac8244ef5b403c2c2dab46843c8c84d3bd4a087b466051a6 \ sha256 ea73b890ad9d02dd412f66b26a0d912ed62a55c743e2a10186764f6f2dd44b5d \
size 17310283 size 18243520


compiler.cxx_standard 2011 compiler.cxx_standard 2011


Expand All @@ -38,5 +38,11 @@ depends_build-append \
post-destroot { post-destroot {
# For some reason, the CLI doesn't get installed by CMake. # For some reason, the CLI doesn't get installed by CMake.
# So we come in and do so manually. # So we come in and do so manually.
copy ${cmake.build_dir}/duckdb_cli ${destroot}${prefix}/bin/ copy ${cmake.build_dir}/duckdb ${destroot}${prefix}/bin/

# Install REST tools
foreach tool {dbgen rest_server} {
copy ${cmake.build_dir}/tools/rest/${name}_${tool} \
${destroot}${prefix}/bin/
}
} }

0 comments on commit dc8289c

Please sign in to comment.