Files
chromebrew/packages/nasm.rb
chromebrew-actions[bot] ab882953d2 updater-nasm-3.01 — nasm → 3.01 (#13319)
* Add unbuilt nasm to updater-nasm-3.01

* updater-nasm-3.01: Package File Update Run on linux/386 container.

* updater-nasm-3.01: Package File Update Run on linux/amd64 container.

* updater-nasm-3.01: Package File Update Run on linux/arm/v7 container.

---------

Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2025-11-03 00:19:06 +00:00

28 lines
833 B
Ruby

require 'buildsystems/autotools'
class Nasm < Autotools
description 'The Netwide Assembler'
homepage 'https://www.nasm.us/'
version '3.01'
license 'BSD'
compatibility 'all'
source_url 'https://github.com/netwide-assembler/nasm.git'
git_hashtag "nasm-#{version.split('-').first}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '981ea5b6b4422e2ea8474f7826b6dc40b7763c486a673c8e00647c7e67b1d31f',
armv7l: '981ea5b6b4422e2ea8474f7826b6dc40b7763c486a673c8e00647c7e67b1d31f',
i686: '14374c8074bb89ff97560e275c4b3bfff9bb285dd8041f58747b12dfb98c0b78',
x86_64: '907797c0e510b684488ade6f22c80e346352142cc66a5fe98a8559cfbd7812f9'
})
depends_on 'glibc' # R
depends_on 'py3_asciidoc' => :build
depends_on 'xmlto' => :build
autotools_build_extras do
system 'make manpages'
end
end