-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathbuild_tarballs.jl
50 lines (40 loc) · 1.64 KB
/
build_tarballs.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder
name = "GEOS"
version = v"3.13.0"
# Collection of sources required to build GEOS
sources = [
ArchiveSource("http://download.osgeo.org/geos/geos-$version.tar.bz2",
"47ec83ff334d672b9e4426695f15da6e6368244214971fabf386ff8ef6df39e4" )
]
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/geos-*/
CMAKE_FLAGS=()
CMAKE_FLAGS+=(-DCMAKE_INSTALL_PREFIX=${prefix})
CMAKE_FLAGS+=(-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN})
CMAKE_FLAGS+=(-DLLVM_HOST_TRIPLE=${MACHTYPE})
CMAKE_FLAGS+=(-DCMAKE_BUILD_TYPE=Release)
CMAKE_FLAGS+=(-S.) # source
# arm complains about duplicate symbols unless we disable inlining
if [[ ${target} == arm* ]]; then
CMAKE_FLAGS+=(-DDISABLE_GEOS_INLINE=true)
fi
cmake ${CMAKE_FLAGS[@]}
make -j${nproc}
make install
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = expand_cxxstring_abis(supported_platforms(; experimental=true))
# The products that we will ensure are always built
products = [
LibraryProduct("libgeos_c", :libgeos),
LibraryProduct(["libgeos", "libgeos-$(version.major)-$(version.minor)"], :libgeos_cpp),
ExecutableProduct("geosop", :geosop),
]
# Dependencies that must be installed before this package can be built
dependencies = []
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6", preferred_gcc_version=v"6")