diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2018-08-19 13:30:33 +0200 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2018-08-19 13:30:57 +0200 |
commit | 8a502c3b60fdd5d8ee0b08e1c9d4c0d7fedc2fda (patch) | |
tree | 0074503f128ab7acf915ca015809ccfe2cc2a1be /gnu/packages/mes.scm | |
parent | 860c37b9f21d8dd044ca44e6b60a8a29878abfd8 (diff) | |
download | patches-8a502c3b60fdd5d8ee0b08e1c9d4c0d7fedc2fda.tar patches-8a502c3b60fdd5d8ee0b08e1c9d4c0d7fedc2fda.tar.gz |
gnu: mescc-tools: Update to 0.5.2.
* gnu/packages/mes.scm (mescc-tools): Update to 0.5.2.
Diffstat (limited to 'gnu/packages/mes.scm')
-rw-r--r-- | gnu/packages/mes.scm | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index a108e3405b..81d4145439 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -116,32 +116,29 @@ Guile-] Scheme interpreter prototype in C and a Nyacc-based C compiler in (define-public mescc-tools (package (name "mescc-tools") - (version "0.5.1") + (version "0.5.2") (source (origin (method url-fetch) (uri (string-append - "https://github.com/oriansj/mescc-tools/archive/Release_" - version + "http://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/" + name "-Release_" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0rsxbjc3bg0jl3h7ai4hndxx2iyyk8bvwj9nd3xv2vgz3bmypnah")))) + "01x7bhmgwyf6mc2g1hcvibhps98nllacqm4f0j5l51b1mbi18pc2")))) (build-system gnu-build-system) (supported-systems '("i686-linux" "x86_64-linux")) (arguments `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:test-target "test" #:phases (modify-phases %standard-phases - (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")))))))) + (delete 'configure)))) (synopsis "Tools for the full source bootstrapping process") (description "Mescc-tools is a collection of tools for use in a full source -bootstrapping process. Currently consists of the M1 macro assembler and the -hex2 linker.") - (home-page "https://github.com/oriansj/mescc-tools") +bootstrapping process. It consists of the M1 macro assembler, the hex2 +linker, the blood-elf symbol table generator, the kaem shell, exec_enable and +get_machine.") + (home-page "https://savannah.nongnu.org/projects/mescc-tools") (license gpl3+))) |