[arch-commits] Commit in tesseract/repos (3 files)

Evangelos Foutras foutrelis at archlinux.org
Sun Nov 12 13:35:59 UTC 2017


    Date: Sunday, November 12, 2017 @ 13:35:58
  Author: foutrelis
Revision: 266349

archrelease: copy trunk to community-staging-x86_64

Added:
  tesseract/repos/community-staging-x86_64/
  tesseract/repos/community-staging-x86_64/PKGBUILD
    (from rev 266348, tesseract/trunk/PKGBUILD)
  tesseract/repos/community-staging-x86_64/tesseract.install
    (from rev 266348, tesseract/trunk/tesseract.install)

-------------------+
 PKGBUILD          |   41 +++++++++++++++++++++++++++++++++++++++++
 tesseract.install |    7 +++++++
 2 files changed, 48 insertions(+)

Copied: tesseract/repos/community-staging-x86_64/PKGBUILD (from rev 266348, tesseract/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-11-12 13:35:58 UTC (rev 266349)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Andreas Hauser <andy-aur at splashground.de>
+
+_langs=(afr ara aze bel ben bul cat ces chi_sim chi_tra chr dan deu ell eng enm
+    epo equ est eus fin fra frk frm glg grc heb hin hrv hun ind isl ita ita_old
+    jpn kan kor lav lit mal mkd mlt msa nld nor pol por ron rus slk slv spa
+    spa_old sqi srp swa swe tam tel tgl tha tur ukr vie)
+
+pkgname=tesseract
+pkgver=3.05.01
+pkgrel=3
+pkgdesc="An OCR program"
+arch=(i686 x86_64)
+url="https://github.com/tesseract-ocr/tesseract"
+license=("APACHE")
+depends=(libpng libtiff libjpeg-turbo zlib giflib gcc-libs leptonica)
+makedepends=(icu cairo pango)
+install=tesseract.install
+optdepends=('icu' 'cairo' 'pango'
+	    $(for l in ${_langs[@]}; do echo tesseract-data-${l}; done))
+source=($pkgname-$pkgver.tar.gz::https://github.com/tesseract-ocr/tesseract/archive/$pkgver.tar.gz
+	https://github.com/tesseract-ocr/tessdata/raw/master/osd.traineddata)
+sha256sums=('05898f93c5d057fada49b9a116fc86ad9310ff1726a0f499c3e5211b3af47ec1'
+            '9cf5d576fcc47564f11265841e5ca839001e7e6f38ff7f7aacf46d15a96b00ff')
+
+build() {
+  cd "$srcdir"/$pkgname-${pkgver}
+  [ -x configure ] || ./autogen.sh
+  [ -f Makefile ] || ./configure --prefix=/usr
+  make
+  make training
+}
+
+package() {
+  cd "$srcdir"/$pkgname-${pkgver}
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" training-install
+  mkdir -p "$pkgdir"/usr/share/tessdata
+  install -Dm0644 "$srcdir"/osd.traineddata "$pkgdir"/usr/share/tessdata/osd.traineddata
+}

Copied: tesseract/repos/community-staging-x86_64/tesseract.install (from rev 266348, tesseract/trunk/tesseract.install)
===================================================================
--- community-staging-x86_64/tesseract.install	                        (rev 0)
+++ community-staging-x86_64/tesseract.install	2017-11-12 13:35:58 UTC (rev 266349)
@@ -0,0 +1,7 @@
+post_install() {
+  echo "You must install one of tesseract-data-* packages or whole tesseract-data group"
+}
+
+post_upgrade() {
+  post_install
+}



More information about the arch-commits mailing list