3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add openspin.

* gnu/packages/embedded.scm (openspin): New variable.
This commit is contained in:
Ricardo Wurmus 2016-12-25 21:55:48 +01:00
parent eb88fbafcd
commit 150e0a1ec6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -543,3 +543,41 @@ Propeller micro-controller development.")
(home-page (package-home-page propeller-gcc))
(license (package-license propeller-gcc))))
(define-public openspin
(package
(name "openspin")
(version "1.00.78")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/parallaxinc/"
"OpenSpin/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1k2dbz1v604g4r2d9qhckg2m8dnhiya760mbsqfsg4waxal87yb7"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no tests
#:phases
(modify-phases %standard-phases
(delete 'configure)
(add-after 'unpack 'remove-timestamp
(lambda _
(substitute* "SpinSource/openspin.cpp"
((" Compiled on.*$") "\\n\");"))
#t))
;; Makefile does not include "install" target
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out")
"/bin")))
(mkdir-p bin)
(install-file "build/openspin" bin)
#t))))))
(home-page "https://github.com/parallaxinc/OpenSpin")
(synopsis "Spin/PASM compiler for the Parallax Propeller")
(description "OpenSpin is a compiler for the Spin/PASM language of the
Parallax Propeller. It was ported from Chip Gracey's original x86 assembler
code.")
(license license:expat)))