[arch-commits] Commit in tesseract/repos (3 files)
Caleb Maclennan
alerque at gemini.archlinux.org
Mon Jan 24 10:31:11 UTC 2022
Date: Monday, January 24, 2022 @ 10:31:11
Author: alerque
Revision: 1114269
archrelease: copy trunk to community-staging-x86_64
Added:
tesseract/repos/community-staging-x86_64/
tesseract/repos/community-staging-x86_64/PKGBUILD
(from rev 1114268, tesseract/trunk/PKGBUILD)
tesseract/repos/community-staging-x86_64/tesseract.install
(from rev 1114268, tesseract/trunk/tesseract.install)
-------------------+
PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
tesseract.install | 7 +++++++
2 files changed, 53 insertions(+)
Copied: tesseract/repos/community-staging-x86_64/PKGBUILD (from rev 1114268, tesseract/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-01-24 10:31:11 UTC (rev 1114269)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Caleb Maclennan <caleb at alerque.com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Andreas Hauser <andy-aur at splashground.de>
+
+_langs=(afr amh ara asm aze aze_cyrl bel ben bod bos bre bul cat ceb ces
+ chi_sim chi_tra chr cos cym dan dan_frak deu deu_frak div dzo ell eng enm epo
+ equ est eus fao fas fil fin fra frk frm fry gla gle glg grc guj hat heb
+ hin hrv hun hye iku ind isl ita ita_old jav jpn kan kat kat_old kaz khm
+ kir kmr kor kor_vert lao lat lav lit ltz mal mar mkd mlt mon mri msa
+ mya nep nld nor oci ori osd pan pol por pus que ron rus san sin slk
+ slk_frak slv snd spa spa_old sqi srp srp_latn sun swa swe syr tam tat
+ tel tgk tgl tha tir ton tur uig ukr urd uzb uzb_cyrl vie yid yor)
+
+pkgname=tesseract
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="An OCR program"
+arch=(x86_64)
+url="https://github.com/tesseract-ocr/tesseract"
+license=("APACHE")
+depends=(libpng libtiff libjpeg-turbo zlib giflib gcc-libs curl libarchive leptonica)
+makedepends=(icu cairo pango asciidoc)
+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/bf82613055ebc6e63d9e3b438a5c234bfd638c93/osd.traineddata)
+sha256sums=('b5b0e561650ed67feb1e9de38d4746121d302ae4c876c95b99b8b6f9f89d5c58'
+ '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 1114268, tesseract/trunk/tesseract.install)
===================================================================
--- community-staging-x86_64/tesseract.install (rev 0)
+++ community-staging-x86_64/tesseract.install 2022-01-24 10:31:11 UTC (rev 1114269)
@@ -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