Building Kurento on lubuntu 15.04

前端 未结 1 1994
走了就别回头了
走了就别回头了 2021-01-27 09:30

I am trying to build whole Kurento on my lubuntu 15.04 (same as ubuntu 15.04 vivid with different UI). I started by cloning all repos:

mkdir kurento
cd kurento

         


        
1条回答
  •  清酒与你
    2021-01-27 10:14

    By default, all kms related projects are ready to be build as debian packages.

    Instead of using cmake and make install by hand, it will be easier for you to generate debian packages and install them.

    The instructions to do generate are very simple:

    export PROJECT_NAME=
    mkdir build_$PROJECT_NAME
    cd build_$PROJECT_NAME
    git clone https://github.com/Kurento/$PROJECT_NAME
    cd $PROJECT_NAME
    debuild -uc -us
    

    Once debuild finishes successfully you will have some debian packages in build_ directory, you can just install them using:

    sudo dpkg -i *deb
    

    It is possible that debuild fails because dependencies are not met, in this case you may have to install them using apt-get or generate them if they are kurento dependencies.

    Nevertheless, we have available all kurento packages (including some custom dependencies whose sources are also available on github), already compiled in kurento repository:

    deb http://ubuntu.kurento.org trusty kms6
    

    or in the dev channel that has all the master branches builds

    deb http://ubuntu.kurento.org trusty-dev kms6
    

    Packages are for trusty release, because they are generated using this release which is the officially supported by kurento, but they can generally be installed on 15.04 too.

    0 讨论(0)
提交回复
热议问题