eddyp wrote:Ganjoe_Rood wrote:but i won't be able to use such nice package-management-features like uninstall and updates?!
btw, there is no other package than the data available.
Well, there are, but not on your arch
at least for the moment.
Ahem, yet another info (correction).
For people eager enough to run the Debianised version on non-powerpc arches in unstable they can use srcinst to install the package from source.
That is after adding a deb-src line in your sources.list file and updating apt database.
Code: Select all
echo 'deb-src http://ftp.us.debian.org/debian unstable main contrib non-free' >> /etc/apt/sources.list
apt-get update
then compile the package.
This should compile and install the oolite package for whatever Debian Linux arch exists.
But, remember this will recompile every package oolite depends on, which are quite some of them. OTOH, one could benefit from compilation optimisations, if they are passed to the build process
.
A faster approach would be to just build the oolite package after grabbing the build dependencies.
Code: Select all
apt-get install debhelper libgnustep-base1.11-dev libgnustep-gui0.10-dev libsdl-mixer1.2-dev libsdl-gfx1.2-dev libsdl-image1.2-dev libglu1-mesa-dev
apt-get -b oolite && cd .. && dpkg -i oolite_1.62-5-1_*.deb
Which should install (if nothing goes wrong) the newly built package.
But, hey, isn't easier to get it prebuilt from alioth.debian.org
?