summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 127879ca0b67971944dc8b0e987a10fb4850e161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Mantainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>

_pkgname=ocrfeeder
pkgname=$_pkgname-git
pkgver=0.8.3+25+g96ed126
pkgrel=1
pkgdesc="complete Optical Character Recognition and Document Analysis and Recognition program"
arch=('any')
url="https://wiki.gnome.org/Apps/OCRFeeder"
license=(GPL)
depends=('ghostscript' 'goocanvas' 'gtk3' 'gtkspell3' 'iso-codes' 'python-gobject' 'python-odfpy'
         'python-pillow' 'python-pyenchant' 'python-reportlab' 'python-sane' 'unpaper')
makedepends=('git' 'gnome-common')
optdepends=('tesseract: character recognition'
            'ocrad: character recognition'
            'gocr: character recognition'
            'cuneiform: character recognition')
source=("git+https://gitlab.gnome.org/GNOME/$_pkgname")
conflicts=($_pkgname)
provides=($_pkgname)
sha512sums=('SKIP')

pkgver() {
  cd $_pkgname
  git describe --tags | sed 's/-/+/g'
}

build() {
  cd $_pkgname
  ./autogen.sh --prefix="/usr"
  make
}

package() {
  cd $_pkgname
  DESTDIR="$pkgdir" make install
}