diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 21:45:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-08 21:45:29 +0100 |
commit | 847768b9cc2e698ab96a430a599b2eaa936416af (patch) | |
tree | 6ce10fdb5989e5288fa5def9ea9911cb63d39384 /gnu | |
parent | a734da8675becc4a6e07a3afa66d000c797e0247 (diff) | |
download | patches-847768b9cc2e698ab96a430a599b2eaa936416af.tar patches-847768b9cc2e698ab96a430a599b2eaa936416af.tar.gz |
gnu: Add translate2geda.
* gnu/packages/engineering.scm (translate2geda): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/engineering.scm | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 9dab778de2..6b7dc3f595 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -37,6 +37,7 @@ #:use-module (guix utils) #:use-module ((srfi srfi-1) #:hide (zip)) #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix build-system ant) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (guix build-system python) @@ -632,6 +633,52 @@ image, etc. Besides viewing Gerbers, you may also view Excellon drill files as well as pick-place files.") (license license:gpl2+))) +(define-public translate2geda + ;; There has been no formal release yet. + (let ((commit "4c19e7eefa338cea8f1ee999ea8b37f8d0698169") + (revision "1")) + (package + (name "translate2geda") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/erichVK5/translate2geda.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1h062bbpw8nk0jamkya1k4lsgaia796jyviiz2gkdi6k1bxhwgpa")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; there are no tests + #:jar-name "translate2geda.jar" + #:source-dir "." + #:main-class "translate2geda" + #:phases + (modify-phases %standard-phases + (add-after 'install 'install-bin + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (wrapper (string-append bin "/translate2geda"))) + (mkdir-p bin) + (with-output-to-file wrapper + (lambda _ + (format #t "#!/bin/sh~%exec ~a -jar ~a/share/java/translate2geda.jar" + (which "java") out))) + (chmod wrapper #o555)) + #t))))) + (home-page "https://github.com/erichVK5/translate2geda") + (synopsis "Utility for converting symbol and footprint formats to gEDA") + (description + "This package provides a utility for converting Kicad (@file{.mod}, +@file{.lib}), Eagle (@file{.lbr}), gerber (@file{.gbr}, etc..), +BXL (@file{.bxl}), IBIS (@file{.ibs}), symdef, LT-Spice (@file{.asc}), +QUCS (@file{.sch}), and BSDL (@file{.bsd}) symbols and footprints and EggBot +fonts to gEDA.") + (license license:gpl2+)))) + (define-public libfive (let ((commit "9d857d1923abecb0e5935b9287d22661f6efaac5") (revision "2")) |