gnu: mescc-tools: Update to 0.5.2.

* gnu/packages/mes.scm (mescc-tools): Update to 0.5.2.
This commit is contained in:
Jan Nieuwenhuizen 2018-08-19 13:30:33 +02:00
parent 860c37b9f2
commit 8a502c3b60
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -116,32 +116,29 @@ (define-public mes
(define-public mescc-tools (define-public mescc-tools
(package (package
(name "mescc-tools") (name "mescc-tools")
(version "0.5.1") (version "0.5.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"https://github.com/oriansj/mescc-tools/archive/Release_" "http://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/"
version name "-Release_" version
".tar.gz")) ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0rsxbjc3bg0jl3h7ai4hndxx2iyyk8bvwj9nd3xv2vgz3bmypnah")))) "01x7bhmgwyf6mc2g1hcvibhps98nllacqm4f0j5l51b1mbi18pc2"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(supported-systems '("i686-linux" "x86_64-linux")) (supported-systems '("i686-linux" "x86_64-linux"))
(arguments (arguments
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:test-target "test" #:test-target "test"
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure))))
(add-after 'install 'install-2
(lambda _
(let ((out (assoc-ref %outputs "out")))
(copy-file "bin/blood-elf" (string-append out "/bin/blood-elf"))))))))
(synopsis "Tools for the full source bootstrapping process") (synopsis "Tools for the full source bootstrapping process")
(description (description
"Mescc-tools is a collection of tools for use in a full source "Mescc-tools is a collection of tools for use in a full source
bootstrapping process. Currently consists of the M1 macro assembler and the bootstrapping process. It consists of the M1 macro assembler, the hex2
hex2 linker.") linker, the blood-elf symbol table generator, the kaem shell, exec_enable and
(home-page "https://github.com/oriansj/mescc-tools") get_machine.")
(home-page "https://savannah.nongnu.org/projects/mescc-tools")
(license gpl3+))) (license gpl3+)))