Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions P/PROJ/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder, Pkg
const YGGDRASIL_DIR = "../.."
include(joinpath(YGGDRASIL_DIR, "platforms", "macos_sdks.jl"))

name = "PROJ"
upstream_version = v"9.7.1"
upstream_version = v"9.8.1"
version_offset = v"2.0.0"
version = VersionNumber(upstream_version.major * 100 + version_offset.major,
upstream_version.minor * 100 + version_offset.minor,
Expand All @@ -11,7 +14,7 @@ version = VersionNumber(upstream_version.major * 100 + version_offset.major,
# Collection of sources required to complete build
sources = [
ArchiveSource("https://download.osgeo.org/proj/proj-$upstream_version.tar.gz",
"6c097dc803c561929cdfcc46e4bf9945ea977611fb31493ad14e88edaeae260f")
"af5b731c145c1d13c4e3b4eeb7d167e94e845e440f71e3496b4ed8dae0291960")
]

# Bash recipe for building across all platforms
Expand Down Expand Up @@ -57,6 +60,8 @@ make -j${nproc}
make install
"""

sources, script = require_macos_sdk("10.14", sources, script)

# 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())
Expand Down