aboutsummaryrefslogtreecommitdiff
path: root/gn/packages
diff options
context:
space:
mode:
authorDennis E. Mungai2016-02-29 01:49:42 +0300
committerDennis E. Mungai2016-02-29 01:49:42 +0300
commit419f84b3a90ebca9e97537139b89de80ad9e4166 (patch)
treef11e71e8092bf3fbfcceba3308b7b2206ac9db17 /gn/packages
parent2814c72f084f175bbc7cfc401ea59662f1595596 (diff)
downloadguix-bioinformatics-419f84b3a90ebca9e97537139b89de80ad9e4166.tar.gz
OpenFYBA package: Cannot build
Needs to run autoreconf-ivf before the ./configure phase for the build to be successful. modify-phase statements needed.
Diffstat (limited to 'gn/packages')
-rw-r--r--gn/packages/OpenFYBA27
1 files changed, 10 insertions, 17 deletions
diff --git a/gn/packages/OpenFYBA b/gn/packages/OpenFYBA
index 5d64381..fade8de 100644
--- a/gn/packages/OpenFYBA
+++ b/gn/packages/OpenFYBA
@@ -16,8 +16,8 @@
;;; 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 OpenFYBA)
- #:use-module ((guix licenses) #:prefix license:)
+(define-module (gn packages OpenFYBA)
+ #:use-module ((guix licenses))
#:use-module (gnu packages)
#:use-module (guix packages)
#:use-module (guix download)
@@ -27,33 +27,26 @@
#:use-module (gnu packages base)
#:use-module (gnu packages tls)
#:use-module (gnu packages zip)
+ #:use-module (gnu packages gnupg)
#:use-module (gnu packages bootstrap)
#:use-module (guix git-download))
(define-public OpenFYBA
(package
(name "OpenFYBA")
- (version "4.4.1")
+ (version "4.1.1")
(source (origin
(method url-fetch)
- (uri (string-append "https://github.com/kartverket/fyba/archive"
+ (uri (string-append "https://github.com/kartverket/fyba/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0ya1agi78d386skq353dk400fl11q6whfqmv31qrkn4g5vamixlr"))))
- (inputs `(("openssl" ,openssl)
- (build-system gnu-build-system)
+ (inputs `(("openssl" ,openssl)
+ ("libgcrypt" ,libgcrypt)))
+ (build-system gnu-build-system)
(home-page "http://labs.kartverket.no/sos/")
(synopsis "source code release of the FYBA library")
- (description
- "OpenFYBA is the source code release of the FYBA library, distributed by the
-National Mapping Authority of Norway (Statens kartverk) to read and write
-files in the National geodata standard format SOSI.
-The original library has a long history, and was originally developed for
-systems as diverse as DOS, OS/2-16, OS/2-32, Win16, Win32, and various UNIX
-variants (POSIX, HPUX, Silicon graphics). In Norwegian. It shows in the
-source code. OpenFYBA has been tested to run at least on Windows and Linux
-environments. ")
- (license license:gpl2+)))
-
+ (description "OpenFYBA is the source code release of the FYBA library.")
+ (license gpl2+)))