From 714c55f077aceb982130642fc957db71f17007f0 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 22 Jun 2021 15:21:32 +0100 Subject: rescribe: add embedded tesseract for linux --- cmd/rescribe/embed_linux.go | 2 +- cmd/rescribe/getembeds.go | 1 + cmd/rescribe/main.go | 12 +++++++----- 3 files changed, 9 insertions(+), 6 deletions(-) (limited to 'cmd/rescribe') diff --git a/cmd/rescribe/embed_linux.go b/cmd/rescribe/embed_linux.go index cad8a29..c720b6e 100644 --- a/cmd/rescribe/embed_linux.go +++ b/cmd/rescribe/embed_linux.go @@ -6,5 +6,5 @@ package main import _ "embed" -// TODO: add go:embed here +//go:embed tesseract-linux-v5.0.0-alpha.20210510.zip var tesszip []byte diff --git a/cmd/rescribe/getembeds.go b/cmd/rescribe/getembeds.go index b2b5392..e59e888 100644 --- a/cmd/rescribe/getembeds.go +++ b/cmd/rescribe/getembeds.go @@ -42,6 +42,7 @@ func dl(url string) error { func main() { urls := []string { "https://rescribe.xyz/rescribe/embeds/tessdata.20210622.zip", + "https://rescribe.xyz/rescribe/embeds/tesseract-linux-v5.0.0-alpha.20210510.zip", "https://rescribe.xyz/rescribe/embeds/tesseract-w32-v5.0.0-alpha.20210506.zip", } for _, v := range urls { diff --git a/cmd/rescribe/main.go b/cmd/rescribe/main.go index 56c9777..ea2590f 100644 --- a/cmd/rescribe/main.go +++ b/cmd/rescribe/main.go @@ -185,14 +185,16 @@ func main() { } if !*systess { + err = unpackZip(tesszip, tessdir) + if err != nil { + log.Fatalln("Error unpacking embedded Tesseract zip:", err) + } switch runtime.GOOS { case "windows": - err = unpackZip(tesszip, tessdir) - if err != nil { - log.Fatalln("Error unpacking embedded Tesseract zip:", err) - } tessCommand = filepath.Join(tessdir, "tesseract.exe") - // TODO: add linux and osx + case "linux": + tessCommand = filepath.Join(tessdir, "tesseract") + // TODO: add osx } } -- cgit v1.2.1-24-ge1ad