From 801f9e8dc8a68bd22b91cc64c446ca086c14b84d Mon Sep 17 00:00:00 2001 From: Shivam Kumar Jha Date: Fri, 9 Mar 2018 03:03:52 +0530 Subject: [PATCH] [IMPROVEMENT] Update COMPILATION.md (#960) 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 3c13ce2d..dbb0d6a6 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`