-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy pathbuild_tarballs.jl
47 lines (40 loc) · 1.54 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
# 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 = "aws_c_auth"
version = v"0.8.6"
# Collection of sources required to complete build
sources = [
GitSource("https://github.com/awslabs/aws-c-auth.git", "01dd06acd2b8865a4a6bc232380ee69a042af47d"),
]
# Bash recipe for building
script = raw"""
cd $WORKSPACE/srcdir/aws-c-auth
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=${prefix} \
-DCMAKE_PREFIX_PATH=${prefix} \
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
-DBUILD_TESTING=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
..
cmake --build . -j${nproc} --target install
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
filter!(p -> !(Sys.iswindows(p) && arch(p) == "i686"), platforms)
# The products that we will ensure are always built
products = [
LibraryProduct("libaws-c-auth", :libaws_c_auth),
]
# Dependencies that must be installed before this package can be built
dependencies = [
Dependency("aws_c_cal_jll"; compat="0.8.3"),
Dependency("aws_c_http_jll"; compat="0.9.3"),
Dependency("aws_c_sdkutils_jll"; compat="0.2.3"),
BuildDependency("aws_lc_jll"),
]
# 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"5")