summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/rescribe/EMBEDDING_NOTES.md6
-rw-r--r--cmd/rescribe/makefile15
-rw-r--r--makefile15
3 files changed, 21 insertions, 15 deletions
diff --git a/cmd/rescribe/EMBEDDING_NOTES.md b/cmd/rescribe/EMBEDDING_NOTES.md
index 930f2d7..e3c3425 100644
--- a/cmd/rescribe/EMBEDDING_NOTES.md
+++ b/cmd/rescribe/EMBEDDING_NOTES.md
@@ -24,6 +24,12 @@ You can find the path names to replace using `otool -L`.
This is all taken from a great guide on how to do this:
http://thecourtsofchaos.com/2013/09/16/how-to-copy-and-relink-binaries-on-osx/
+Additionally, at least with OSX on arm64 (M1), one needs to re-
+sign the tesseract executable and libraries after changing them,
+or OSX will prevent them from being run. You can do this with
+the codesign tool, like this:
+ codesign -f -s - liblept.5.dylib
+
The embedded tessdata is much easier to create, it's just a
standard tessdata from an install on any platform, plus any
additional .traineddata files you want to include.
diff --git a/cmd/rescribe/makefile b/cmd/rescribe/makefile
new file mode 100644
index 0000000..32620f2
--- /dev/null
+++ b/cmd/rescribe/makefile
@@ -0,0 +1,15 @@
+# See LICENSE file for copyright and license details.
+
+all: rescribe-osx rescribe-osx-m1 rescribe.exe rescribe
+
+rescribe:
+ GOOS=linux GOARCH=amd64 go build -o $@ .
+
+rescribe-osx:
+ GOOS=darwin GOARCH=amd64 go build -o $@ .
+
+rescribe-osx-m1:
+ GOOS=darwin GOARCH=arm64 go build -o $@ .
+
+rescribe.exe:
+ GOOS=windows GOARCH=386 go build -o $@ .
diff --git a/makefile b/makefile
deleted file mode 100644
index d831938..0000000
--- a/makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# See LICENSE file for copyright and license details.
-
-default:
- @echo "To build and install use the basic go tools like so: go install ./..."
- @echo "This makefile is just for cross compiling (for which the"
- @echo "targets rescribe-osx and rescribe-w32 exist)"
-
-rescribe-osx:
- GOOS=darwin GOARCH=amd64 go build -o $@ ./cmd/rescribe
-
-rescribe-osx-m1:
- GOOS=darwin GOARCH=arm64 go build -o $@ ./cmd/rescribe
-
-rescribe.exe:
- GOOS=windows GOARCH=386 go build -o $@ ./cmd/rescribe