Skip to content

Commit

Permalink
New recipe: OpenGLMathematics-v0.9.9 (#4611)
Browse files Browse the repository at this point in the history
* Create build_tarballs.jl

* Update build_tarballs.jl

* Update build_tarballs.jl

* Update build_tarballs.jl

* Update G/glm/build_tarballs.jl

Co-authored-by: Mosè Giordano <[email protected]>

* Update G/glm/build_tarballs.jl

Co-authored-by: Mosè Giordano <[email protected]>

* Update G/glm/build_tarballs.jl

Co-authored-by: Mosè Giordano <[email protected]>

* Update G/glm/build_tarballs.jl

Co-authored-by: Mosè Giordano <[email protected]>

* Update build_tarballs.jl

* Update and rename G/glm/build_tarballs.jl to O/OpenGLMathematics/build_tarballs.jl

Co-authored-by: Mosè Giordano <[email protected]>
  • Loading branch information
jhigginbotham64 and giordano authored Mar 15, 2022
1 parent 028b793 commit f938ae8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions O/OpenGLMathematics/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder

name = "OpenGLMathematics"
version = v"0.9.9"

# Collection of sources required to build this package
sources = [
GitSource("https://github.com/g-truc/glm.git",
"6ad79aae3eb5bf809c30bf1168171e9e55857e45"),
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/glm*
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=${prefix} \
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
-DCMAKE_BUILD_TYPE=Release \
..
make -j${nproc}
make install
"""

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [AnyPlatform()]

# The products that we will ensure are always built
products = [
FileProduct("include/glm/glm.hpp", :glm_hpp),
]

# Dependencies that must be installed before this package can be built
dependencies = Dependency[]

build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

0 comments on commit f938ae8

Please sign in to comment.