Reply To: Library is invisible in iTunes

#11993
rpedde
Participant

@mallaire wrote:

Hummm… compile a new one?

I am relatively new to all this stuff… I learned to configure a lot of things on Linux, but compiling is something I don’t know yet….

Is this something complicated? I don’t want to abuse of your time, but can you give me a few tips on how to do this?

🙂

Here’s the terse answer:

Install the necessary development packages:

root@foo:~# apt-get install make gcc libc6-dev libsqlite0-dev libid3tag0-dev libflac-dev libvorbis-dev libavahi-client-dev

Download the tarball:

root@foo:~# wget http://nightlies.mt-daapd.org/mt-daapd-svn-1586.tar.gz

Untar it:

root@foo:~# tar -xvzf mt-daapd-svn-1586.tar.gz
root@foo:~# cd mt-daapd-svn-1586

configure it:

root@foo:~/mt-daapd-svn-1586# ./configure –prefix=/usr –enable-avahi –enable-flac –enable-oggvorbis –enable-sqlite

root@foo:~/mt-daapd-svn-1586# make; make install

Something like that should do it. Again, I hope to have new nightlies tomorrow, so if that fails, check back tomorrow.

— Ron