gnu: fasm: Update comments.
* gnu/packages/assembly.scm (fasm): Update comments.
This commit is contained in:
parent
cb95e79f14
commit
f73b7bf6e2
|
@ -140,18 +140,17 @@ to the clients.")
|
||||||
"02wqkqxpn3p0iwcagsm92qd9cdfcnbx8a09qg03b3pjppp30hmp6"))))
|
"02wqkqxpn3p0iwcagsm92qd9cdfcnbx8a09qg03b3pjppp30hmp6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;;no tests
|
`(#:tests? #f ; No tests exist
|
||||||
#:strip-binaries? #f ;; fasm has no sections
|
#:strip-binaries? #f ; fasm has no sections
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure) ;;no configure script used
|
(delete 'configure) ; no "configure" script exists
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
;;source code are in this directory
|
|
||||||
(chdir "source/Linux/")
|
(chdir "source/Linux/")
|
||||||
(if (string=? ,(%current-system) "x86_64-linux")
|
(if (string=? ,(%current-system) "x86_64-linux")
|
||||||
;;use pre-compiled binaries in top-level directory to build
|
;; Use pre-compiled binaries in top-level directory to build
|
||||||
;;itself
|
;; fasm.
|
||||||
(invoke "../../fasm.x64" "fasm.asm")
|
(invoke "../../fasm.x64" "fasm.asm")
|
||||||
(invoke "../../fasm" "fasm.asm"))))
|
(invoke "../../fasm" "fasm.asm"))))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
|
@ -159,7 +158,6 @@ to the clients.")
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
(install-file "fasm" (string-append out "/bin")))
|
(install-file "fasm" (string-append out "/bin")))
|
||||||
#t)))))
|
#t)))))
|
||||||
;;support only intel x86 family processors
|
|
||||||
(supported-systems '("x86_64-linux" "i686-linux"))
|
(supported-systems '("x86_64-linux" "i686-linux"))
|
||||||
(synopsis "Assembler for x86 processors")
|
(synopsis "Assembler for x86 processors")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue