Build Love on PowerPC - MintPPC 9.3
Posted: Sun Aug 12, 2012 4:31 am
Hello Everyone -
I just got Love 0.8.0 to build successfully on my MintPPC g4 powerbook system. Here is how I did it:
Clone the love repository from Bitbucket
Install love dependencies:
I am not sure if this next step is neccessary - but I ran it and it worked for me...
Run the get-libs script in <LOVE_SRC>/platform/unix:
There is a macro called AM_PROG_AR defined in configure.in that initially causes love 0.8.0 to fail to build. This can be fixed by commenting out a line in the configure.in file.
cd to the love source directory and comment out line #9 in platform/unix/configure.in
Now build it:
Have fun spreading the love on powerpc!
Note: if you are running the unstable MintPPC 11 you can just install Love 0.8.0 with apt. I think these instructions will work similarly on Debian Squeeze based systems...
I just got Love 0.8.0 to build successfully on my MintPPC g4 powerbook system. Here is how I did it:
Clone the love repository from Bitbucket
Code: Select all
hg clone https://bitbucket.org/rude/love
Code: Select all
sudo apt-get build-dep love
Run the get-libs script in <LOVE_SRC>/platform/unix:
Code: Select all
cd <LOVE_SRC>/platform/unix
chmod +x get-libs
./get-libs
cd to the love source directory and comment out line #9 in platform/unix/configure.in
Code: Select all
#AM_PROG_AR
Code: Select all
cd <LOVE_SRC>
platform/unix/automagic
./configure
make
Note: if you are running the unstable MintPPC 11 you can just install Love 0.8.0 with apt. I think these instructions will work similarly on Debian Squeeze based systems...