255d1bbe77
* gnu/packages/databases.scm (gdbm, bdb, bdb-5.3): Move from here... * gnu/packages/dbm.scm: ...to this new module. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * gnu/packages/audio.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm, gnu/packages/cobol.scm, gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm, gnu/packages/finance.scm, gnu/packages/game-development.scm, gnu/packages/gnome.scm, gnu/packages/guile.scm, gnu/packages/ibus.scm, gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/mail.scm, gnu/packages/man.scm, gnu/packages/nvi.scm, gnu/packages/openldap.scm, gnu/packages/package-management.scm, gnu/packages/php.scm, gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm, gnu/packages/sawfish.scm: Update module references.
75 lines
2.9 KiB
Scheme
75 lines
2.9 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages cobol)
|
|
#:use-module (gnu packages)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix licenses)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix download)
|
|
#:use-module (gnu packages dbm)
|
|
#:use-module (gnu packages multiprecision)
|
|
#:use-module (gnu packages ncurses)
|
|
#:use-module (gnu packages perl))
|
|
|
|
(define-public gnucobol
|
|
(package
|
|
(name "gnucobol")
|
|
(version "2.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"mirror://gnu/gnucobol/gnucobol-"
|
|
version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"1814s1n95xax2dz938cf4fkcp0q94nkj1gjbdblbzpk9q92zq66w"))))
|
|
(arguments
|
|
'(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
|
(assoc-ref %outputs "out")
|
|
"/lib"))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'place-cobol85-test-suite
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(let ((newcob (assoc-ref inputs "newcob")))
|
|
(copy-file newcob "tests/cobol85/newcob.val.Z")))))
|
|
#:test-target "checkall"))
|
|
(native-inputs
|
|
`(("perl" ,perl)))
|
|
(inputs
|
|
`(("bdb" ,bdb)
|
|
("gmp" ,gmp)
|
|
("ncurses" ,ncurses)
|
|
("newcob" ,(origin
|
|
(method url-fetch)
|
|
(uri "https://www.itl.nist.gov/div897/ctg/suites/newcob.val.Z")
|
|
(sha256
|
|
(base32
|
|
"1yb1plmv4firfnbb119r2vh1hay221w1ya34nyz0qwsxppfr56hy"))))))
|
|
(build-system gnu-build-system)
|
|
(home-page "https://savannah.gnu.org/projects/gnucobol/")
|
|
(synopsis "A modern COBOL compiler")
|
|
(description "GnuCOBOL is a free, modern COBOL compiler. GnuCOBOL
|
|
implements a substantial part of the COBOL 85, COBOL 2002 and COBOL 2014
|
|
standards and X/Open COBOL, as well as many extensions included in other
|
|
COBOL compilers (IBM COBOL, MicroFocus COBOL, ACUCOBOL-GT and others).
|
|
GnuCOBOL translates COBOL into C and compiles the translated code using
|
|
a native C compiler.")
|
|
(license gpl3+)))
|