-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WolframAppDisovery] Initial commit, to be used for MathLink.jl (#6458)
* [WolframAppDisovery] Initial commit, to be used for MathLink.jl * args * LICENSE with an S * Update build_tarballs.jl --------- Co-authored-by: Mosè Giordano <[email protected]>
- Loading branch information
1 parent
4408cd3
commit e4a8e95
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 --bin wolfram-app-discovery --features=cli | ||
install -Dvm 755 "target/${rust_target}/release/wolfram-app-discovery${exeext}" "${bindir}/wolfram-app-discovery${exeext}" | ||
install_license LICENSE-MIT LICENSE-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") |