2013-08-19 00:52:49 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
2016-07-21 16:18:06 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2013-08-19 00:52:49 +02:00
|
|
|
;;;
|
|
|
|
;;; 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/>.
|
|
|
|
|
2015-03-20 16:22:34 +01:00
|
|
|
(define-module (gnu packages ocr)
|
2015-03-21 20:11:56 +01:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-08-19 00:52:49 +02:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-03-21 20:11:56 +01:00
|
|
|
#:use-module (gnu packages compression)
|
2016-07-21 16:18:06 +02:00
|
|
|
#:use-module (gnu packages image))
|
2013-08-19 00:52:49 +02:00
|
|
|
|
|
|
|
(define-public ocrad
|
|
|
|
(package
|
|
|
|
(name "ocrad")
|
2017-05-02 12:20:12 +02:00
|
|
|
(version "0.26")
|
2013-08-19 00:52:49 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/ocrad/ocrad-"
|
|
|
|
version ".tar.lz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-05-02 12:20:12 +02:00
|
|
|
"0g4fq7maybdnd1471kd05a3f5sb7spa3d26k706rk85sd5wd70y3"))))
|
2013-08-19 00:52:49 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs `(("lzip" ,lzip)))
|
2017-03-30 00:48:16 +02:00
|
|
|
(home-page "https://www.gnu.org/software/ocrad/")
|
2013-08-19 00:52:49 +02:00
|
|
|
(synopsis "Optical character recognition based on feature extraction")
|
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
"GNU Ocrad is an optical character recognition program based on a
|
|
|
|
feature extraction method. It can read images in PBM, PGM or PPM formats and
|
|
|
|
it produces text in 8-bit or UTF-8 formats.")
|
2015-03-21 20:11:56 +01:00
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
|
|
(define-public tesseract-ocr
|
|
|
|
(package
|
|
|
|
(name "tesseract-ocr")
|
2016-07-21 16:18:06 +02:00
|
|
|
(version "3.04.01")
|
2015-03-21 20:11:56 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-07-21 16:18:06 +02:00
|
|
|
"https://github.com/tesseract-ocr/tesseract/archive/"
|
2015-03-21 20:11:56 +01:00
|
|
|
version ".tar.gz"))
|
2016-07-21 16:18:06 +02:00
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-03-21 20:11:56 +01:00
|
|
|
(sha256
|
2016-07-21 16:18:06 +02:00
|
|
|
(base32 "0snwd8as5i8vx7zkimpd2yg898jl96zf90r65a9w615f2hdkxxjp"))))
|
2015-03-21 20:11:56 +01:00
|
|
|
(build-system gnu-build-system)
|
2016-07-21 16:18:06 +02:00
|
|
|
(inputs
|
2015-03-21 20:11:56 +01:00
|
|
|
`(("leptonica" ,leptonica)))
|
|
|
|
(arguments
|
2016-07-21 16:18:06 +02:00
|
|
|
'(#:configure-flags
|
2015-03-21 20:11:56 +01:00
|
|
|
(let ((leptonica (assoc-ref %build-inputs "leptonica")))
|
|
|
|
(list (string-append "LIBLEPT_HEADERSDIR=" leptonica "/include")))))
|
2016-07-21 16:18:06 +02:00
|
|
|
(home-page "https://github.com/tesseract-ocr")
|
2015-03-21 20:11:56 +01:00
|
|
|
(synopsis "Optical character recognition engine")
|
|
|
|
(description
|
|
|
|
"Tesseract is an optical character recognition (OCR) engine with very
|
|
|
|
high accuracy. It supports many languages, output text formatting, hOCR
|
|
|
|
positional information and page layout analysis. Several image formats are
|
|
|
|
supported through the Leptonica library. It can also detect whether text is
|
|
|
|
monospaced or proportional.")
|
|
|
|
(license license:asl2.0)))
|