Skip to content

Commit

Permalink
[Typst] Update to v0.12.0 (JuliaPackaging#9645)
Browse files Browse the repository at this point in the history
* [Typst] Update to v0.12.0

* Update build_tarballs.jl

---------

Co-authored-by: Mosè Giordano <[email protected]>
  • Loading branch information
jakobjpeters and giordano authored Oct 19, 2024
1 parent 531d838 commit 3eeaeb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions T/Typst/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
using BinaryBuilder, Pkg

name = "Typst"
version = v"0.11.1"
version = v"0.12.0"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/typst/typst.git", "5011510270c2c23f0ab019af486b26db0d62261b")
GitSource("https://github.com/typst/typst.git", "737895d769188f6fc154523e67a9102bc24c872e")
]

# Bash recipe for building across all platforms
Expand All @@ -21,7 +21,7 @@ install_license LICENSE
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = filter(supported_platforms()) do p
!((Sys.iswindows(p) && arch(p) == "i686") || (arch(p) == "powerpc64le"))
!((Sys.iswindows(p) && arch(p) == "i686") || (arch(p) == "powerpc64le") || (Sys.isfreebsd(p) && arch(p) == "aarch64"))
end

# The products that we will ensure are always built
Expand Down

0 comments on commit 3eeaeb1

Please sign in to comment.