From 9b527b779396a5fe022df8e9c60e2e3ae0d6b79f Mon Sep 17 00:00:00 2001 From: Evgeny Shulgin Date: Wed, 15 Feb 2017 20:20:42 +0400 Subject: [PATCH] Updated "Compiling" section with Fedora --- README.md | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index af89df8d..14bf882f 100644 --- a/README.md +++ b/README.md @@ -33,15 +33,41 @@ More usage information can be found on our website: ## Compiling ### Debian/Ubuntu - -Install these packages in the terminal - + # make sure you have CCExtractor repository forked + # clone repository + sudo apt-get install -y git + git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username + + # installing dependencies sudo apt-get install -y gcc sudo apt-get install -y libcurl4-gnutls-dev sudo apt-get install -y tesseract-ocr sudo apt-get install -y tesseract-ocr-dev sudo apt-get install -y libleptonica-dev -Then run script linux/build or linux/builddebug. + + # compiling + cd ccextractor/linux + ./build + + # test your build + ./ccextractor + +### Fedora + # make sure you have CCExtractor repository forked + # clone repository + sudo yum install -y git + git clone https://github.com/%USERNAME%/ccextractor.git # paste your github username + + # installing dependencies + sudo yum install -y gcc + sudo yum install -y tesseract-devel # leptonica will be installed automatically + + # compiling + cd ccextractor/linux + ./build + + # test your build + ./ccextractor ### Windows