PPA Archive
The PPA archive is not yet ready at the moment.
Releases
You can get a tarball here and compile it.
-
wget http://launchpad.net/luce/trunk/0.0.1/+download/luce-0.0.1.tar.gz
Change the URL to whatever is the last release tarball URL (get it on Luce downloads page ). - Install the needed packages as described in the next section.
sudo apt-get install build-essential libclutter-1.0-dev libjpeg8-dev - In a terminal, type
tar xzvf luce-0.0.1.tar.gz
cd luce-0.0.1
./configure
make
sudo make install
- See the usage section in this page for use.
In progress development code
The Luce source code is on Launchpad: http://launchpad.net/luce
To compile Luce on Ubuntu Karmic, you will need to install a number of packages. You can try this:
sudo apt-get install build-essential bzr libclutter-1.0-dev libjpeg8-dev
Some packages among the above are only present on karmic at the moment so you need to have karmic.
You can also compile Luce on jaunty (in fact my development machine runs on jaunty), but you’ll need to compile a number of libraries from source.
Once you have installed these packages, get the code and compile it. Get it with:
bzr branch lp:luce
then
cd luce
./autogen.sh
./configure
make
sudo make install
If you want to compile luce to debug it, modify the configure step as follows:
./configure --enable-debug
Usage
You can run the program with
luce [path]
You can either specify a directory or a filename.
Browse the source code
You can browse the code on:
http://bazaar.launchpad.net/~marcolazzaroni/luce/devel/files
The base launchpad website for Luce is at
https://launchpad.net/luce
Feel free to contribute, file bugs, and so on