Picard Qt/Mac Install Guide: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
(remove pymb2 (Imported from MoinMoin))
 
(ctypes not needed if you use python 2.5 (Imported from MoinMoin))
Line 39: Line 39:


* download and extract [http://www.sacredchao.net/~piman/software/ mutagen-1.9.tar.gz] [484 kB]
* download and extract [http://www.sacredchao.net/~piman/software/ mutagen-1.9.tar.gz] [484 kB]

<pre>python setup.py build
sudo python setup.py install</pre>

===C-Types===

* download and extract [http://sourceforge.net/project/showfiles.php?group_id=71702&package_id=71318 ctypes-1.0.1.tar.gz] [384 kB]


<pre>python setup.py build
<pre>python setup.py build

Revision as of 06:24, 11 April 2007

This page is outdated, some of the steps are not required anymore, some are changed.

Notes

  • CAUTION: Proceed at your own risk. This isn't official yet and is not supported. This document is provided purely for informational purposes and should not be used if you don't know what you're doing.

Installation Steps

Python

Qt4

./configure 
make
sudo make install

PyQt4

sudo python configure.py 
make
sudo make install
sudo python configure.py -q /usr/local/Trolltech/Qt-4.2.3/bin/qmake 
sudo make
sudo make install

Mutagen

python setup.py build 
sudo python setup.py install

LibDiscID

./configure 
make
sudo make install

Expat2

./configure --prefix=/usr 
vi Makefile
  • change LIBRARY = libexpat.la to LIBRARY = libexpatw.la, save and quit (Esc, w, q, Enter)
make buildlib 
sudo make installlib

LibOfa

  • download and extract libofa-0.9.3.tar.gz (direct link) [376 kB]
  • download and extract libtool-1.5.22.tar.gz [2.8 MB]
  • copy ltmain.sh from the libtool dir to the libofa dir (overwrite)
  • (if you tried configuring libofa without copying the libtool's ltmain.sh file, run make clean]
./configure --prefix=/usr 
make
sudo make install

Ffmpeg

  • dammit, it looks like we need Fink... :(

sudo fink install ffmpeg / or follow http://stephenjungels.com/jungels.net/articles/ffmpeg-howto.html

PicardQt

python setup.py config 
python setup.py install

And from now just type picard to run the app!

Contributions

  • HUGE thanks to luks and warp in #musicbrainz for their help throughout this process.