spek/wiki/UnixInstall.wiki
Alexander Kojevnikov a9ff3e55ec Move code to GitHub
2011-07-16 15:35:04 +08:00

59 lines
1.7 KiB
Plaintext

#labels Featured
= Unix installation instructions =
== Binary packages ==
Spek is not yet packaged on many distributions, help in this area will be greatly appreciated.
* *Arch Linux*: [http://aur.archlinux.org/packages.php?ID=38001 spek] and [http://aur.archlinux.org/packages.php?ID=37252 spek-git]
* *Debian*: [http://packages.debian.org/search?keywords=spek spek]
* *Fedora*: unreviewed [https://bugzilla.rpmfusion.org/show_bug.cgi?id=1718 RPMFusion package]
* *FreeBSD*: [http://www.freshports.org/audio/spek/ audio/spek]
* *Gentoo*: [http://packages.gentoo.org/package/media-sound/spek media-sound/spek]
* *Ubuntu*: [http://packages.ubuntu.com/search?keywords=spek spek], [https://launchpad.net/~alexk/+archive/spek Official PPA]
== Ubuntu PPA ==
To install Spek from the [https://launchpad.net/~alexk/+archive/spek official PPA] on Ubuntu 10.10 (Maverick Meerkat) or Ubuntu 11.04 (Natty Narwhal) run these commands:
{{{
% sudo add-apt-repository ppa:alexk/spek
% sudo apt-get update
% sudo apt-get install spek
}}}
== Building from the tarball ==
To build Spek, download the source code tarball then run these commands from terminal:
{{{
% tar -xjvf spek-0.x.tar.bz2
% cd spek-0.x
% ./configure
% make
}}}
To build you will need GTK+ and FFmpeg/libav packages. On Debian/Ubuntu you also need development packages: libgtk2.0-dev, libavcodec-dev and libavformat-dev.
To start Spek, run:
{{{
% src/spek
}}}
Or install it with:
{{{
% sudo make install
}}}
== Building from the git repository ==
{{{
% git clone git://github.com/alexkay/spek.git
% cd spek
% ./autogen.sh
% make
}}}
In addition to the packages listed above, you will need autotools and the Vala compiler (normally packaged as valac).