[vlmc-devel] Update INSTALL.md
Yikai Lu
git at videolan.org
Tue Feb 28 22:52:42 CET 2017
vlmc | branch: master | Yikai Lu <luyikei.qmltu at gmail.com> | Tue Feb 28 15:52:28 2017 -0600| [105755eecd07eb16054f4d18cdc81739c70196a4] | committer: Yikai Lu
Update INSTALL.md
> https://code.videolan.org/videolan/vlmc/commit/105755eecd07eb16054f4d18cdc81739c70196a4
---
INSTALL.md | 60 ++++++++++++++++++++++++++++--------------------------------
1 file changed, 28 insertions(+), 32 deletions(-)
diff --git a/INSTALL.md b/INSTALL.md
index 85c8010..5801a52 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -2,51 +2,47 @@
## Dependencies
* Latest version of VLC installed (from the git repository)
-* Qt framework >= 5.0.0
+* Qt framework >= 5.6.0
+* MLT >= 6.4.0
+* medialibrary
+* libvlcpp
-##Get the sources
- git clone https://code.videolan.org/videolan/vlmc.git
-
-## Fetch libvlcpp
+## Install VLC
- git submodule init
- git submodule update
+ See https://wiki.videolan.org/Category:Building/
-##Building and packaging VLMC on Linux
+## Install libvlcpp
-A typical way to build VLMC is:
- mkdir build && cd build
+ git clone https://code.videolan.org/videolan/libvlcpp.git
+ cd libvlcpp
+ ./bootstrap
+ ./configure
+ sudo make install
-To set install path: (optional)
- cmake -DCMAKE_INSTALL_PREFIX=/usr ..
-Else:
- cmake ..
+## Install medialibrary
-Build:
+ git clone https://code.videolan.org/videolan/medialibrary.git
+ cd medialibrary
+ ./bootstrap
+ ./configure
make
+ sudo make install
-To package:
- make package
-
-But this by default will search for available pkg builders and build accordingly.
-
-To force building deb:
- cpack -G DEB
-To force building rpm:
- cpack -G RPM
-
-## Installing on Linux
+## Install MLT
-### To install
- dpkg -i <deb package>
- rpm -i <rpm package>
+ git clone https://github.com/mltframework/mlt.git
+ ./configure
+ make
+ sudo make install
-### To remove:
- dpkg -r vlmc
- rpm -e vlmc
+## Build VLMC
+ git clone https://code.videolan.org/videolan/vlmc.git
+ ./bootstrap
+ ./configure
+ make
## Running VLMC
More information about the Vlmc-devel
mailing list