From bc9d01495f5dce6388361ae64f1b4c485bd488eb Mon Sep 17 00:00:00 2001 From: Shivam Kumar Jha Date: Fri, 9 Mar 2018 02:56:44 +0530 Subject: [PATCH] [IMPROVEMENT] Update COMPILATION.md Add instructions to make the installation systemwide (on Linux) which can allow CCExtractor to be used from anywhere with just the below command in terminal: `ccextractor [videofile]` --- docs/COMPILATION.MD | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/COMPILATION.MD b/docs/COMPILATION.MD index 3c13ce2de..dbb0d6a64 100644 --- a/docs/COMPILATION.MD +++ b/docs/COMPILATION.MD @@ -51,6 +51,9 @@ make # test your build ./ccextractor + +# make build systemwide +sudo make install ``` **Using CMake** @@ -69,6 +72,9 @@ make # test your build ./ccextractor + +# make build systemwide +sudo make install ``` @@ -82,6 +88,9 @@ In order to compile it you'll need to configure it using autoconf by passing the ./autogen.sh ./configure --with-gui make + +# make build systemwide +sudo make install ``` Once set up you can run the GUI interface from the terminal `./ccextractorGUI`