diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 22:56:37 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:30:34 +0100 |
commit | 85a802d3e50cb65ee496c9f1cb851d3329ec992f (patch) | |
tree | d68078a8206b679f71133fadee5c8d111facb55a /gnu | |
parent | a1ea196cc0ed31e2d9b92c18f125c4d9908c0e5e (diff) | |
download | guix-85a802d3e50cb65ee496c9f1cb851d3329ec992f.tar.gz guix-85a802d3e50cb65ee496c9f1cb851d3329ec992f.zip |
gnu: sunclock: Sort alphabetically.
* gnu/packages/astronomy.scm (sunclock): Sort alphabetically.
Change-Id: I845cf7d9aee651e51ad3a82b743263f316d8df3f
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 118 |
1 files changed, 59 insertions, 59 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index f342bb13ee..2ac1aac834 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4024,65 +4024,6 @@ more.") ;; Default version of INDI.. indi-1.9) -(define-public sunclock - (let ((commit "f4106eb0a81f7594726d6b2859efd8fc64cc1225") - (revision "1")) - (package - (name "sunclock") - (version (git-version "3.57" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nongiach/Sunclock") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1rczdpmhvfw57b9r793vq8vqlbdhlkgj52fxwrdfl6cwj95a9kv2")))) - (build-system gnu-build-system) - (arguments - `(#:make-flags - (list (string-append "DESTDIR=" %output) - ;; Fix incorrect argument given to gcc. Error message: - ;; "gcc: error: DefaultGcc2AMD64Opt: No such file or directory" - "CDEBUGFLAGS=") - #:phases - (modify-phases %standard-phases - (replace 'configure - (lambda _ - (chdir "sunclock-3.57") - (substitute* "Imakefile" - (("^MANDIR=/X11R6/man/man1") - "MANDIR=/share/man/man1") - (("^BINDIR=/X11R6/bin") - "BINDIR=/bin") - ;; Disable ZLIB support for vmf files because zlib implements - ;; `gzgetc` as a macro instead of a function, which results in - ;; a compilation error. - ((" -DZLIB") "") - ((" -lz") "") - (("cd \\$\\(DESTDIR\\)\\$\\(SHAREDIR\\)/earthmaps/vmf ; \ -gzip -f \\*.vmf") - "")) - ;; Generate Makefile. - (invoke "xmkmf")))) - #:tests? #f)) ; No check target. - (inputs - (list libjpeg-turbo libpng libx11 libxpm)) - (native-inputs - (list imake)) - (home-page "https://github.com/nongiach/Sunclock") - (synopsis - "Map of the Earth that shows which portion is illuminated by the Sun") - (description - "Sunclock displays a map of the Earth and shows which portion is -illuminated by the Sun. It can commute between two states, the \"clock window\" -and the \"map window\". The clock window displays a small map of the Earth and -therefore occupies little space on the screen, while the \"map window\" displays -a large map and offers more advanced functions: local time of cities, Sun and -Moon position, etc.") - (license license:gpl2+)))) - (define-public python-jplephem (package (name "python-jplephem") @@ -5271,6 +5212,65 @@ using (multivariate) polynomials.") ;; yt/frontends/artio/artio_headers/LICENSE: for C code. license:lgpl3)))) +(define-public sunclock + (let ((commit "f4106eb0a81f7594726d6b2859efd8fc64cc1225") + (revision "1")) + (package + (name "sunclock") + (version (git-version "3.57" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nongiach/Sunclock") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rczdpmhvfw57b9r793vq8vqlbdhlkgj52fxwrdfl6cwj95a9kv2")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list (string-append "DESTDIR=" %output) + ;; Fix incorrect argument given to gcc. Error message: + ;; "gcc: error: DefaultGcc2AMD64Opt: No such file or directory" + "CDEBUGFLAGS=") + #:phases + (modify-phases %standard-phases + (replace 'configure + (lambda _ + (chdir "sunclock-3.57") + (substitute* "Imakefile" + (("^MANDIR=/X11R6/man/man1") + "MANDIR=/share/man/man1") + (("^BINDIR=/X11R6/bin") + "BINDIR=/bin") + ;; Disable ZLIB support for vmf files because zlib implements + ;; `gzgetc` as a macro instead of a function, which results in + ;; a compilation error. + ((" -DZLIB") "") + ((" -lz") "") + (("cd \\$\\(DESTDIR\\)\\$\\(SHAREDIR\\)/earthmaps/vmf ; \ +gzip -f \\*.vmf") + "")) + ;; Generate Makefile. + (invoke "xmkmf")))) + #:tests? #f)) ; No check target. + (inputs + (list libjpeg-turbo libpng libx11 libxpm)) + (native-inputs + (list imake)) + (home-page "https://github.com/nongiach/Sunclock") + (synopsis + "Map of the Earth that shows which portion is illuminated by the Sun") + (description + "Sunclock displays a map of the Earth and shows which portion is +illuminated by the Sun. It can commute between two states, the \"clock window\" +and the \"map window\". The clock window displays a small map of the Earth and +therefore occupies little space on the screen, while the \"map window\" displays +a large map and offers more advanced functions: local time of cities, Sun and +Moon position, etc.") + (license license:gpl2+)))) + (define-public swarp (package (name "swarp") |