Skip to content

Commit

Permalink
Mutationjlf_jll build 1.0.5+0
Browse files Browse the repository at this point in the history
  • Loading branch information
apey236 committed Jun 13, 2023
1 parent 229d008 commit a9f1522
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
override/
8 changes: 8 additions & 0 deletions Artifacts.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[[Mutationjlf]]
arch = "aarch64"
git-tree-sha1 = "8142241f721be0d1fd6b43770c8849fbf82c7036"
os = "macos"

[[Mutationjlf.download]]
sha256 = "649ceee8efe176ef2ff332510c3fa812402b9623ba284bad951ab74713a854ce"
url = "https://github.com/apey236/Mutationjlf_jll.jl/releases/download/Mutationjlf-v1.0.5+0/Mutationjlf.v1.0.5.aarch64-apple-darwin.tar.gz"
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
The Julia source code within this repository (all files under `src/`) are
released under the terms of the MIT "Expat" License, the text of which is
included below. This license does not apply to the binary package wrapped by
this Julia package and automatically downloaded by the Julia package manager
upon installing this wrapper package. The binary package's license is shipped
alongside the binary itself and can be found within the
`share/licenses/Mutationjlf` directory within its prefix.

MIT License

Copyright (c) 2023 Ahmad Peyvan
Expand Down
13 changes: 13 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name = "Mutationjlf_jll"
uuid = "150b8214-ccc0-5381-b45f-a42992b8b194"
version = "1.0.5+0"

[deps]
JLLWrappers = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"

[compat]
JLLWrappers = "1.2.0"
julia = "1.6"
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# `Mutationjlf_jll.jl` (v1.0.5+0)

This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl).

## Documentation

For more details about JLL packages and how to use them, see `BinaryBuilder.jl` [documentation](https://docs.binarybuilder.org/stable/jll/).

## Sources

The tarballs for `Mutationjlf_jll.jl` have been built from these sources:

* git repository: https://github.com/mutationpp/Mutationpp.git (revision: `4cb6e3a05c15f49ffd346dc9f185ccc3459728b0`)

## Platforms

`Mutationjlf_jll.jl` is available for the following platforms:

* `macOS aarch64` (`aarch64-apple-darwin`)

## Products

The code bindings within this package are autogenerated from the following `Products`:

* `LibraryProduct`: `Mutationjlf`
9 changes: 9 additions & 0 deletions src/Mutationjlf_jll.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Use baremodule to shave off a few KB from the serialized `.ji` file
baremodule Mutationjlf_jll
using Base
using Base: UUID
import JLLWrappers

JLLWrappers.@generate_main_file_header("Mutationjlf")
JLLWrappers.@generate_main_file("Mutationjlf", UUID("150b8214-ccc0-5381-b45f-a42992b8b194"))
end # module Mutationjlf_jll
15 changes: 15 additions & 0 deletions src/wrappers/aarch64-apple-darwin.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Autogenerated wrapper script for Mutationjlf_jll for aarch64-apple-darwin
export Mutationjlf

JLLWrappers.@generate_wrapper_header("Mutationjlf")
JLLWrappers.@declare_library_product(Mutationjlf, "@rpath/libmutation++_fortran.dylib")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Mutationjlf,
"lib/libmutation++_fortran.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)

JLLWrappers.@generate_init_footer()
end # __init__()

0 comments on commit a9f1522

Please sign in to comment.