-
Notifications
You must be signed in to change notification settings - Fork 553
/
build_tarballs.jl
43 lines (35 loc) · 1.4 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
# 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
name = "ZlibNG"
version = v"2.2.2"
# Collection of sources required to complete build
sources = [
GitSource("https://github.com/zlib-ng/zlib-ng.git", "c939498c7f2a1d645833a98251365e2c814fd736"),
DirectorySource("bundled"),
]
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/zlib-ng
# Correct Power build (see <https://github.com/zlib-ng/zlib-ng/issues/1648>)
atomic_patch -p1 ${WORKSPACE}/srcdir/patches/power.patch
cmake -B build \
-DCMAKE_INSTALL_PREFIX=$prefix \
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DZLIB_ENABLE_TESTS=OFF
cmake --build build --parallel ${nproc}
cmake --install build
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
# The products that we will ensure are always built
products = [
LibraryProduct(["libz-ng", "libzlib-ng2"], :libzng)
]
# Dependencies that must be installed before this package can be built
dependencies = Dependency[]
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")