mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: nasm: Update to 2.13.01.
* gnu/packages/assembly.scm (nasm): Update to 2.13.01. [arguments]: Adjust Makefile substitutions.
This commit is contained in:
parent
fe435b3af6
commit
3f56740d72
1 changed files with 6 additions and 6 deletions
|
@ -34,14 +34,14 @@ (define-module (gnu packages assembly)
|
||||||
(define-public nasm
|
(define-public nasm
|
||||||
(package
|
(package
|
||||||
(name "nasm")
|
(name "nasm")
|
||||||
(version "2.12.02")
|
(version "2.13.01")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.nasm.us/pub/nasm/releasebuilds/"
|
(uri (string-append "http://www.nasm.us/pub/nasm/releasebuilds/"
|
||||||
version "/" name "-" version ".tar.xz"))
|
version "/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08a3ah791cl7xdyrlz33mwv4xzs08rxh0p902p3ypi5iq1h6p1jc"))))
|
"0plsvcwxc7q3llr3bz10prwq1gn4ll38aqmv0yzfqcq4iw0160ma"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs `(("perl" ,perl) ;for doc and test target
|
(native-inputs `(("perl" ,perl) ;for doc and test target
|
||||||
("texinfo" ,texinfo)))
|
("texinfo" ,texinfo)))
|
||||||
|
@ -52,10 +52,10 @@ (define-public nasm
|
||||||
(add-after 'unpack 'dont-build-ps-pdf-outputs
|
(add-after 'unpack 'dont-build-ps-pdf-outputs
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "doc/Makefile.in"
|
(substitute* "doc/Makefile.in"
|
||||||
(("info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf")
|
(("html nasmdoc.txt nasmdoc.pdf")
|
||||||
"info html nasmdoc.txt")
|
"html nasmdoc.txt")
|
||||||
(("nasmdoc.ps nasmdoc.pdf nasmdoc.txt \\$\\(INSTALLROOT\\)\\$\\(docdir\\)")
|
(("\\$\\(INSTALL_DATA\\) nasmdoc.pdf")
|
||||||
"nasmdoc.txt $(INSTALLROOT)$(docdir)"))
|
"$(INSTALL_DATA)"))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'install 'install-info
|
(add-after 'install 'install-info
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in a new issue