From 3820b0d5a0181ab8e985bded0d22d5dd114286e1 Mon Sep 17 00:00:00 2001 From: Moelf Date: Thu, 25 Nov 2021 11:24:20 -0500 Subject: [PATCH 1/2] Zlibcloudflare --- Z/Zlibcloudflare/build_tarballs.jl | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Z/Zlibcloudflare/build_tarballs.jl diff --git a/Z/Zlibcloudflare/build_tarballs.jl b/Z/Zlibcloudflare/build_tarballs.jl new file mode 100644 index 00000000000..5148d907cec --- /dev/null +++ b/Z/Zlibcloudflare/build_tarballs.jl @@ -0,0 +1,40 @@ +# 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 = "Zlibcloudflare" +version = v"1.2.8" + +# Collection of sources required to complete build +sources = [ + GitSource("https://github.com/cloudflare/zlib.git", "959b4ea305821e753385e873ec4edfaa9a5d49b7") +] + +# Bash recipe for building across all platforms +script = raw""" +cd $WORKSPACE/srcdir/zlib* +cmake -DCMAKE_INSTALL_PREFIX=$prefix -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} -DCMAKE_BUILD_TYPE=Release -DUNIX=true -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_SHARED_LIBS=ON +make -j ${nproc} +make install +install_license ../README +""" + +# These are the platforms we will build for by default, unless further +# platforms are passed in on the command line +platforms = [ + Platform("x86_64", "linux"; libc = "glibc"), + Platform("x86_64", "linux"; libc = "musl") +] + + +# The products that we will ensure are always built +products = [ + LibraryProduct("libz", :libz) +] + +# 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") From 1b8ad8730bdf7438d849835a6ea328d5ac1c62f3 Mon Sep 17 00:00:00 2001 From: Jerry Ling Date: Thu, 25 Nov 2021 13:18:01 -0500 Subject: [PATCH 2/2] Update build_tarballs.jl --- Z/Zlibcloudflare/build_tarballs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Z/Zlibcloudflare/build_tarballs.jl b/Z/Zlibcloudflare/build_tarballs.jl index 5148d907cec..21fec8f1690 100644 --- a/Z/Zlibcloudflare/build_tarballs.jl +++ b/Z/Zlibcloudflare/build_tarballs.jl @@ -29,7 +29,7 @@ platforms = [ # The products that we will ensure are always built products = [ - LibraryProduct("libz", :libz) + LibraryProduct("libz", :libzcloudflare) ] # Dependencies that must be installed before this package can be built