INSTALL.md (1648B)
1 # Installation instructions 2 3 ## Windows 4 5 Download section offers two packages: an MSI installer and a ZIP archive. To 6 install Spek, download the MSI installer, double-click it and follow the 7 instructions. 8 9 If you don't want to use the installer, you can download the ZIP archive, unpack 10 it somewhere on your disk and run `Spek\spek.exe`. 11 12 ## Mac OS X 13 14 Spek for Mac OS X is available in the download section. Download and open the 15 DMG package, then drag the Spek icon to Applications. 16 17 Spek requires OS X 10.5+ and an Intel-based Mac. 18 19 ## *BSD and GNU/Linux 20 21 ### Binary packages 22 23 * Arch: [spek](https://aur.archlinux.org/packages/spek/) and 24 [spek-git](https://aur.archlinux.org/packages/spek-git/) 25 * Debian: [spek](https://packages.debian.org/search?keywords=spek) 26 * Fedora: [RPMFusion package](https://bugzilla.rpmfusion.org/show_bug.cgi?id=1718) 27 * FreeBSD: [audio/spek](https://www.freshports.org/audio/spek/) 28 * Gentoo: [media-sound/spek](https://packages.gentoo.org/packages/media-sound/spek) 29 * Ubuntu: [spek](http://packages.ubuntu.com/search?keywords=spek) 30 31 ### Building from the tarball 32 33 To build Spek, download the source code tarball then run these commands from 34 terminal: 35 36 tar -xvf spek-0.8.2.tar.xz 37 cd spek-0.8.2 38 ./configure 39 make 40 41 To build you will need wxWidgets and FFmpeg packages. On Debian/Ubuntu you also 42 need development packages: `libwxgtk2.8-dev`, `wx-common`, `libavcodec-dev` and 43 `libavformat-dev`. 44 45 To start Spek, run: 46 47 src/spek 48 49 Or install it with: 50 51 sudo make install 52 53 ### Building from the git repository 54 55 git clone git://github.com/alexkay/spek.git 56 cd spek 57 ./autogen.sh 58 make