Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Releases: JuliaMultimedia/SFMLBuilder

SFMLv2.5.1 + CSFMLv2.5.0 - 4

29 Jan 12:48
Compare
Choose a tag to compare

Supported platforms:

  • Linux x86
  • Linux x86_64
  • macOS
  • Windows x86
  • Windows x86_64

Patched build.jl

using BinaryProvider # requires BinaryProvider 0.3.0 or later

# Parse some basic command-line arguments
const verbose = "--verbose" in ARGS
const prefix = Prefix(get([a for a in ARGS if a != "--verbose"], 1, joinpath(@__DIR__, "usr")))
products = [
    LibraryProduct(prefix, ["libcsfml-graphics", "csfml-graphics-2"], :libcsfml_graphics),
    LibraryProduct(prefix, ["libsfml-window", "sfml-window-2"], :libsfml_window),
    LibraryProduct(prefix, ["libsfml-audio", "sfml-audio-2"], :libsfml_audio),
    LibraryProduct(prefix, ["libsfml-network", "sfml-network-2"], :libsfml_network),
    LibraryProduct(prefix, ["libsfml-system", "sfml-system-2"], :libsfml_system),
    LibraryProduct(prefix, ["libsfml-graphics", "sfml-graphics-2"], :libsfml_graphics),
    LibraryProduct(prefix, ["libcsfml-system", "csfml-system-2"], :libcsfml_system),
    LibraryProduct(prefix, ["libcsfml-network", "csfml-network-2"], :libcsfml_network),
    LibraryProduct(prefix, ["libcsfml-window", "csfml-window-2"], :libcsfml_window),
    LibraryProduct(prefix, ["libcsfml-audio", "csfml-audio-2"], :libcsfml_audio),
]

# Download binaries from hosted location
bin_prefix = "https://github.com/Gnimuc/SFMLBuilder/releases/download/v2.5-4"

# Listing of files generated by BinaryBuilder:
download_info = Dict(
    Windows(:i686) => ("$bin_prefix/SFML.v2.5.1.i686-w64-mingw32-gcc7.tar.gz", "39f8acac8c4c9e63cc6d649cfda24f5de9e68a7871abcf87c99f0791d9fc54cb"),
    MacOS(:x86_64) => ("$bin_prefix/SFML.v2.5.1.x86_64-apple-darwin14.tar.gz", "33a64920293273ca616ddf795460fe9fdf0a403cab67f8d231deaa3d30c4f99c"),
    Linux(:x86_64, libc=:glibc) => ("$bin_prefix/SFML.v2.5.1.x86_64-linux-gnu-gcc7.tar.gz", "b6ef09c057426c945644df018dd7614e2a9da9920f30ab82102fcb39b339cc6e"),
    Windows(:x86_64) => ("$bin_prefix/SFML.v2.5.1.x86_64-w64-mingw32-gcc7.tar.gz", "eceb442ca35057feacab099eaf614029033d4da958d8acf579de94c83dd38c25"),
)

# Install unsatisfied or updated dependencies:
unsatisfied = any(!satisfied(p; verbose=verbose) for p in products)
dl_info = choose_download(download_info, platform_key_abi())
if dl_info === nothing && unsatisfied
    # If we don't have a compatible .tar.gz to download, complain.
    # Alternatively, you could attempt to install from a separate provider,
    # build from source or something even more ambitious here.
    error("Your platform (\"$(Sys.MACHINE)\", parsed as \"$(triplet(platform_key_abi()))\") is not supported by this package!")
end

# If we have a download, and we are unsatisfied (or the version we're
# trying to install is not itself installed) then load it up!
if unsatisfied || !isinstalled(dl_info...; prefix=prefix)
    # Download and install binaries
    install(dl_info...; prefix=prefix, force=true, verbose=verbose, ignore_platform=true)
end

# Write out a deps.jl file that will contain mappings for our products
write_deps_file(joinpath(@__DIR__, "deps.jl"), products, verbose=verbose)

SFMLv2.5.1 + CSFMLv2.5.0 - 3

28 Jan 16:19
3488636
Compare
Choose a tag to compare

Supported platforms:

  • Linux x86_64
  • Linux x86
  • macOS
  • Windows x86
  • Windows x86_64

SFMLv2.5.1 + CSFMLv2.5.0 - 2

28 Jan 13:19
Compare
Choose a tag to compare
Pre-release
v2.5-2

Specify gcc version on Windows

SFMLv2.5.1 + CSFMLv2.5.0 - 1

27 Jan 06:38
262a17c
Compare
Choose a tag to compare
Pre-release
v2.5-1

Rename LICENSE to LICENSE.md