This is for all linux's however we are running a Fedora Core 8 Build

Building on linux is pretty straight forward; this assumed that you have the standard development tools installed i.e. gcc, pkgconfig, etc.

Dependencies

Current dependencies are openlibraries (full build with ffmpeg) and Qt3

* for openlibraries we will have a repo online soon for yum access, in the mean follow the build instrucitons for your platform at

* for Qt3, you should already have Qt3 installed however you may need the developer tools:

  • sudo yum install qt-devel
  • for RHEL 5 you need qt-devel-3.3.6-23.el5.i386.rpm

CineSuite Build Instructions

Currently we are using the qmake tool to create cross platform makefiles

* Navigate to the cinesuite src directory and set up the environment

  • cd cinesuite/src
  • source setenv

* Create the makefile with qmake for the tool you plan to build

  • for cineplay
    • qmake -o Makefile cineplay.pro
    • make
    • ./cineplay
  • for cinecode
    • qmake -o Makefile cinecode.pro
    • make
    • ./cinecode

* if you are experiencing link issues running the binary then you will probably need to add the openlibraries path somewhere that the linker can find it. this is for development testing only and is not the case for release builds.

  • edit /etc/ld.so.conf
  • add /usr/local/lib at the end of the file
    • this should be the location of your openlibraries installation
  • the run ldconfig
    • this should be in /sbin/ldconfig