-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
See LICENSE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
To build enigma2 on Ubuntu 10.04, follow these steps: | ||
|
||
0.) Consider using OE to build it for a Dreambox instead. | ||
Stop reading here. It's not very useful for most people | ||
to build enigma2 for a PC. | ||
|
||
1.) Install these packages: | ||
|
||
autoconf | ||
automake | ||
build-essential | ||
gettext | ||
libfreetype6-dev | ||
libfribidi-dev | ||
libgif-dev | ||
libgstreamer0.10-dev | ||
libgstreamer-plugins-base0.10-dev | ||
libjpeg62-dev | ||
libpng12-dev | ||
libsdl1.2-dev | ||
libsigc++-1.2-dev | ||
libtool | ||
libxml2-dev | ||
libxslt1-dev | ||
python-dev | ||
swig | ||
|
||
2.) Build and install libdvbsi++: | ||
|
||
git clone git://git.opendreambox.org/git/obi/libdvbsi++.git | ||
cd libdvbsi++ | ||
dpkg-buildpackage -uc -us | ||
cd .. | ||
sudo dpkg -i libdvbsi++*.deb | ||
|
||
3.) Build and install libxmlccwrap: | ||
|
||
git clone git://git.opendreambox.org/git/obi/libxmlccwrap.git | ||
cd libxmlccwrap | ||
dpkg-buildpackage -uc -us | ||
cd .. | ||
sudo dpkg -i libxmlccwrap*.deb | ||
|
||
4.) Build and install enigma2: | ||
|
||
git clone git://git.opendreambox.org/git/enigma2.git | ||
cd enigma2 | ||
autoreconf -i | ||
./configure --prefix=$HOME/enigma2 --with-libsdl | ||
make | ||
make install | ||
|