This is intended to be used by developers who wants to develop without system-wide/apt installing Kurento Media Server and it's libs. Currently, this works in Ubuntu 16.04 64Bits (Xenial) and uses GStreamer from Ubuntu official repositories
./build-kurento.sh
This will clone Kurento repositories from Kurento's Official GitHub and build it
./run-kurento.sh
This will run kurento, loading it's plugins and configs from local build path
... ( checkout "kms-core" repo to your own repository ) ...
./build-kms-core.sh
./build-kms-config.sh
This will build kms-core source files locally (without system-wide installation)
cd kms-core
... (do modifications) ...
make
cd ..
./run-kurento.sh
Same as before, except it doesn't run CMake
(depends on kms-core's module build)
... ( checkout "kms-elements" repo to your own repository ) ...
./build-kms-elements.sh
./build-kms-config.sh
cd kms-elements
... (do modifications) ...
make
cd ..
./run-kurento.sh