Back to Developers Page

How to compile TupiTube Desk source code (Fedora 22)

1. Install Fedora packages

sudo dnf install ruby
sudo dnf install make
sudo dnf automake
sudo dnf install gcc
sudo dnf install gcc-c++
sudo dnf install zlib-devel
sudo dnf install libogg-devel
sudo dnf install libtheora-devel
sudo dnf install yasm

2. Compile & Install libav

wget https://libav.org/releases/libav-9.18.tar.gz
tar xvfz libav-9.18.tar.gz
cd libav-9.18
./configure --prefix=/usr --enable-shared
make
sudo make install

3. Install Qt5 (version > 5.4)

chmod 755 qt-unified-linux-x64-2.0.2-2-online.run
./qt-unified-linux-x64-2.0.2-2-online.run
% export PATH=/home/user/Qt/5.5/gcc_64/bin:$PATH
qmake -version
    QMake version 3.0
    Using Qt version 5.5.0 in /home/user/Qt/5.5/gcc_64/lib

4. Compile & Install Quazip

- Download the latest version of Quazip from http://sourceforge.net/projects/quazip/

tar xvfz quazip-0.7.3.tar.gz
cd quazip-0.7.3
qmake "PREFIX=/usr/local" "LIBS+=-lz"
make
sudo make install

5. Compile & Install TupiTube

git clone https://github.com/xtingray/tupitube.desk.git -b devel
cd tupi
./configure --prefix=/usr/local/tupitube.desk --with-libav=/usr --with-quazip=/usr/local
make
sudo make install

6. If everything goes well, run TupiTube Desk!

/usr/local/tupitube.desk/bin/tupitube.desk &

Back to Developers Page