Skip to content

Commit

Permalink
[NASM] Update to v2.16 (#6782)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored May 22, 2023
1 parent c2628cd commit d55279a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions N/NASM/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
using BinaryBuilder, Pkg

name = "NASM"
version = v"2.15.0"
version_string = "2.16.01"
version = VersionNumber(version_string)

# Collection of sources required to complete build
sources = [
ArchiveSource("https://www.nasm.us/pub/nasm/releasebuilds/2.15/nasm-2.15.tar.xz", "bc340c2604de5a9aa405b194aae3bcdd86c1631a68a5f4d2165e11d358c2c223")
ArchiveSource("https://www.nasm.us/pub/nasm/releasebuilds/$(version_string)/nasm-$(version_string).tar.xz",
"c77745f4802375efeee2ec5c0ad6b7f037ea9c87c92b149a9637ff099f162558"),
]

# Bash recipe for building across all platforms
Expand All @@ -22,7 +24,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 = supported_platforms(; experimental=true)
platforms = supported_platforms()

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

0 comments on commit d55279a

Please sign in to comment.