Skip to content

Commit

Permalink
[WolframAppDisovery] Initial commit, to be used for MathLink.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbyrne committed Mar 27, 2023
1 parent 88261fb commit bf58564
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions W/WolframAppDiscovery/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using BinaryBuilder

name = "WolframAppDiscovery"
version = v"0.4.3"

sources = [
GitSource("https://github.com/WolframResearch/wolfram-app-discovery-rs.git", "aa6feb10261593d7c6f13062f7f68b47a8b130b8")
]

# Bash recipe for building across all platforms
script = raw"""
cd ${WORKSPACE}/srcdir/wolfram-app-discovery-rs/
cargo build --release
install -D -m 755 "target/${rust_target}/release/wolfram-app-discovery${exeext}" "${bindir}/wolfram-app-discovery${exeext}"
install_license LICENCE-MIT LICENCE-APACHE
"""

platforms = supported_platforms()
# Our Rust toolchain for i686 Windows is unusable
filter!(p -> !Sys.iswindows(p) || arch(p) != "i686", platforms)

# The products that we will ensure are always built
products = [
ExecutableProduct("wolfram-app-discovery", :wolfram_app_discovery),
]

# 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; compilers=[:c, :rust], julia_compat="1.6")

0 comments on commit bf58564

Please sign in to comment.