mirror of
https://github.com/alexkay/spek.git
synced 2025-04-18 09:27:37 +03:00
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
#labels Featured
|
|
= Mac OS X installation instructions =
|
|
|
|
== Binary package ==
|
|
|
|
Spek for Mac OS X is available in the download section. Download and open the DMG package, then drag the Spek icon to Applications.
|
|
|
|
Spek requires OS X 10.5 or 10.6 and an Intel-based Mac.
|
|
|
|
== Building from the tarball ==
|
|
|
|
The official way to build Spek on OS X is using [http://sourceforge.net/apps/trac/gtk-osx/wiki/Build jhbuild]. Just follow instructions from [http://gitorious.org/spek/spek/blobs/master/dist/osx/README dist/osx/README].
|
|
|
|
Alternatively, Spek can be built using packages from [http://www.macports.org/ MacPorts]. After [http://www.macports.org/install.php installing MacPorts] get these dependencies:
|
|
|
|
{{{
|
|
$ sudo port install intltool
|
|
$ sudo port install pango-devel +no_x11 +quartz
|
|
$ sudo port install gtk2 +no_x11 +quartz
|
|
$ sudo port install ffmpeg +no_x11 +no_nonfree
|
|
$ sudo port install ige-mac-integration
|
|
}}}
|
|
|
|
Then download the source code tarball and run these commands from terminal:
|
|
|
|
{{{
|
|
$ tar -xjvf spek-0.x.tar.bz2
|
|
$ cd spek-0.x
|
|
$ ./configure
|
|
$ make
|
|
}}}
|
|
|
|
To start Spek, run:
|
|
|
|
{{{
|
|
$ src/spek
|
|
}}} |