mirror of
https://github.com/alexkay/spek.git
synced 2025-04-25 12:22:18 +03:00
59 lines
1.6 KiB
Plaintext
59 lines
1.6 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*: 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*: [http://packages.debian.org/search?keywords=spek spek].
|
|
* *Fedora*: [https://bugzilla.redhat.com/show_bug.cgi?id=597888 bug #597888].
|
|
* *FreeBSD*: [http://www.freshports.org/audio/spek/ audio/spek].
|
|
* *Gentoo*: [http://packages.gentoo.org/package/media-sound/spek media-sound/spek].
|
|
* *Ubuntu*: [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 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://gitorious.org/spek/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). |