me
/
guix
Archived
1
0
Fork 0

gnu: nasm: Update to 2.15.05.

* gnu/packages/assembly.scm (nasm): Update to 2.15.05.
[phases]{dont-build-ps-pdf-outputs}: Adjust patching to changes in the source.
master
Maxim Cournoyer 2021-06-04 22:28:49 -04:00
parent d1827d5c63
commit 5d547f74ed
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 5 deletions

View File

@ -58,14 +58,14 @@
(define-public nasm
(package
(name "nasm")
(version "2.14.02")
(version "2.15.05")
(source (origin
(method url-fetch)
(uri (string-append "http://www.nasm.us/pub/nasm/releasebuilds/"
version "/nasm-" version ".tar.xz"))
(sha256
(base32
"1xg8dfr49py15vbwk1rzcjc3zpqydmr49ahlijm56wlgj8zdwjp2"))))
"0gqand86b0r86k3h46dh560lykxmxqqywz5m55kgjfq7q4lngbrw"))))
(build-system gnu-build-system)
(native-inputs `(("perl" ,perl) ;for doc and test target
("texinfo" ,texinfo)))
@ -76,11 +76,10 @@
(add-after 'unpack 'dont-build-ps-pdf-outputs
(lambda _
(substitute* "doc/Makefile.in"
(("html nasmdoc.txt nasmdoc.pdf")
(("html nasmdoc.txt nasmdoc.pdf \\$\\(XZFILES\\)")
"html nasmdoc.txt")
(("\\$\\(INSTALL_DATA\\) nasmdoc.pdf")
"$(INSTALL_DATA)"))
#t))
"$(INSTALL_DATA)"))))
(add-after 'install 'install-info
(lambda _
(invoke "make" "install_doc"))))))