From 00522bc950c76647acf5c262412577e10f04b602 Mon Sep 17 00:00:00 2001 From: Mayank Gupta Date: Mon, 13 Mar 2017 11:40:11 +0530 Subject: [PATCH] Updated README.md --- README.md | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b5f1bcf..ac926982 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,22 @@ More usage information can be found on our website: sudo apt-get install -y tesseract-ocr-dev sudo apt-get install -y libleptonica-dev - # compiling + # compiling (Choose any one of 3 methods) + METHOD 1: If you don't want to obtain object files cd ccextractor/linux ./build + METHOD 2: If you want object files + cd ccextractor/linux + make + + METHOD 3: Standard linux compilation through Autoconf scripts + sudo apt-get install autoconf #Dependency to generate configuration script + cd ccextractor + ./autogen.sh + ./configure + make + # test your build ./ccextractor @@ -62,10 +74,22 @@ More usage information can be found on our website: sudo yum install -y gcc sudo yum install -y tesseract-devel # leptonica will be installed automatically - # compiling + # compiling (Choose any one of the 3 methods) + METHOD 1: If you don't want to obtain object files cd ccextractor/linux ./build + METHOD 2: If you want object files + cd ccextractor/linux + make + + METHOD 3: Standard linux compilation through Autoconf scripts + sudo dnf install autoconf automake #Dependency to generate configuration script + cd ccextractor + ./autogen.sh + ./configure + make + # test your build ./ccextractor