Skip to content

Commit 8b1c82f

Browse files
New Recipe: gecko v1.0.0 (#10794)
Co-authored-by: Ian McInerney <[email protected]>
1 parent 044d812 commit 8b1c82f

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

G/gecko/build_tarballs.jl

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Note that this script can accept some limited command-line arguments, run
2+
# `julia build_tarballs.jl --help` to see a usage message.
3+
using BinaryBuilder, Pkg
4+
5+
name = "gecko"
6+
version = v"1.0.0"
7+
8+
# Collection of sources required to complete build
9+
sources = [
10+
GitSource("https://github.com/LLNL/gecko.git", "490ab7d9b7b4e0f007e10d2af2b022b96d427fee")
11+
]
12+
13+
# Bash recipe for building across all platforms
14+
script = raw"""
15+
cd $WORKSPACE/srcdir/gecko/
16+
mkdir build
17+
cmake -S ./ -B build .. \
18+
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
19+
-DCMAKE_INSTALL_PREFIX=${prefix} \
20+
-DCMAKE_BUILD_TYPE=Release
21+
22+
cmake --build build --parallel ${nproc}
23+
cmake --install build
24+
"""
25+
26+
# These are the platforms we will build for by default, unless further
27+
# platforms are passed in on the command line
28+
# Only support Linux and FreeBSD
29+
platforms = expand_cxxstring_abis(supported_platforms())
30+
filter!(p -> (Sys.islinux(p) || Sys.isfreebsd(p)), platforms)
31+
32+
33+
# The products that we will ensure are always built
34+
products = [
35+
LibraryProduct("libgecko", :libgecko)
36+
]
37+
38+
# Dependencies that must be installed before this package can be built
39+
dependencies = Dependency[
40+
]
41+
42+
# Build the tarballs, and possibly a `build.jl` as well.
43+
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

0 commit comments

Comments
 (0)