commit 0eab666feffa0e18e5f4ff80ad540e83a49c07d4
parent 302908520f3a1a6ac4810ad55e80c7e10e67dcef
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date: Thu, 24 Jun 2010 09:53:17 +1000
[web] Add osx to the roadmap + sync wiki
Diffstat:
3 files changed, 39 insertions(+), 1 deletion(-)
diff --git a/web/index.html b/web/index.html
@@ -53,6 +53,7 @@
<p>Features planned for the 1.0 release:</p>
<ul>
<li><del>Windows port</del></li>
+ <li>Mac OS X port</li>
<li><del>Time and frequency rulers</del></li>
<li>Zoom and horizontal scroll</li>
<li>Adjust spectral density range (dB)</li>
diff --git a/wiki/LinuxInstall.wiki b/wiki/LinuxInstall.wiki
@@ -8,7 +8,7 @@ Spek is not yet packaged on many distributions, help in this area will be greatl
* *Arch Linux*: Use one of the packages in the AUR: [http://aur.archlinux.org/packages.php?ID=38001 spek] and [http://aur.archlinux.org/packages.php?ID=37252 spek-git].
* *Debian*: RFP (request for packaging): [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584524 bug #584524].
* *Fedora*: [http://dl.dropbox.com/u/6598054/spek-0.4-5.fc13.x86_64.rpm v0.4 x86_64], [http://dl.dropbox.com/u/6598054/spek-0.4-5.fc13.i686.rpm v0.4 i686] and [http://dl.dropbox.com/u/6598054/spek-0.4-5.fc13.src.rpm v0.4 source] (RPMs by scorp6). There's also a review request needing a sponsor: [https://bugzilla.redhat.com/show_bug.cgi?id=597888 bug #597888].
- * *Ubuntu*: [http://dl.dropbox.com/u/124437/spek_0.4-1_amd64.deb v0.4 amd64] (DEB by mcnellis).
+ * *Ubuntu*: [http://dl.dropbox.com/u/124437/spek_0.4-1_amd64.deb v0.4 amd64] (DEB by mcnellis) and [http://dl.dropbox.com/u/1099005/spek_0.4-1_i386.deb v0.4 i386] (DEB by !KoxxBoxx).
== Building from the tarball ==
diff --git a/wiki/OsxInstall.wiki b/wiki/OsxInstall.wiki
@@ -0,0 +1,36 @@
+#labels Featured
+= Mac OS X installation instructions =
+
+== Binary package ==
+
+An experimental version of the Spek 0.5 installer can be downloaded [http://spek.googlecode.com/files/spek-0.5-alpha3.dmg here].
+
+== Building from the tarball ==
+
+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 gtk2 +quartz +no_x11
+$ sudo port install gstreamer
+$ sudo port install gst-plugins-base +no_gnome_vfs +no_x11
+$ sudo port install gst-plugins-good
+$ sudo port install gst-plugins-bad +no_x11
+$ sudo port install gst-plugins-ugly
+$ sudo port install gst-ffmpeg
+}}}
+
+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
+}}}
+\ No newline at end of file