From a9ff3e55ecf277ddc845afa655735100c0b4f2c5 Mon Sep 17 00:00:00 2001 From: Alexander Kojevnikov Date: Sat, 16 Jul 2011 15:35:04 +0800 Subject: [PATCH] Move code to GitHub --- dist/debian/control | 4 +-- web/index.html | 2 +- wiki | 1 - wiki/OsxInstall.wiki | 37 +++++++++++++++++++++++++ wiki/Source.wiki | 1 + wiki/UnixInstall.wiki | 59 ++++++++++++++++++++++++++++++++++++++++ wiki/WindowsInstall.wiki | 8 ++++++ 7 files changed, 108 insertions(+), 4 deletions(-) delete mode 160000 wiki create mode 100644 wiki/OsxInstall.wiki create mode 100644 wiki/Source.wiki create mode 100644 wiki/UnixInstall.wiki create mode 100644 wiki/WindowsInstall.wiki diff --git a/dist/debian/control b/dist/debian/control index 8303600..cb31777 100644 --- a/dist/debian/control +++ b/dist/debian/control @@ -16,8 +16,8 @@ Build-Depends: debhelper (>= 7.0.50~), libpango1.0-dev Standards-Version: 3.9.2 Homepage: http://www.spek-project.org/ -Vcs-Git: https://code.google.com/p/spek -Vcs-Browser: http://code.google.com/p/spek/source/browse +Vcs-Git: git://github.com/alexkay/spek.git +Vcs-Browser: https://github.com/alexkay/spek Package: spek Architecture: any diff --git a/web/index.html b/web/index.html index c600aa9..e094ab1 100644 --- a/web/index.html +++ b/web/index.html @@ -112,7 +112,7 @@

Contribute

-

Spek is free and open source software licensed under GNU GPL v3. The project is written in C and Vala, the code is hosted on Google Code.

+

Spek is free and open source software licensed under GNU GPL v3. The project is written in C and Vala, the code is hosted on GitHub. Patches can be sent as merge requests or attached to a new issue.

Report bugs and request new features on the issue tracker.

Translation is done via Transifex. Don't hesitate to translate Spek into a new language or to improve existing translations.

diff --git a/wiki b/wiki deleted file mode 160000 index ac553ee..0000000 --- a/wiki +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ac553ee399f3bbb2f6948fc01a3016b8cbe6aa99 diff --git a/wiki/OsxInstall.wiki b/wiki/OsxInstall.wiki new file mode 100644 index 0000000..f9b7898 --- /dev/null +++ b/wiki/OsxInstall.wiki @@ -0,0 +1,37 @@ +#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 +}}} \ No newline at end of file diff --git a/wiki/Source.wiki b/wiki/Source.wiki new file mode 100644 index 0000000..87ad89f --- /dev/null +++ b/wiki/Source.wiki @@ -0,0 +1 @@ +Spek source code is hosted on [https://github.com/alexkay/spek GitHub]. \ No newline at end of file diff --git a/wiki/UnixInstall.wiki b/wiki/UnixInstall.wiki new file mode 100644 index 0000000..19d2ba3 --- /dev/null +++ b/wiki/UnixInstall.wiki @@ -0,0 +1,59 @@ +#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). \ No newline at end of file diff --git a/wiki/WindowsInstall.wiki b/wiki/WindowsInstall.wiki new file mode 100644 index 0000000..fafec73 --- /dev/null +++ b/wiki/WindowsInstall.wiki @@ -0,0 +1,8 @@ +#labels Featured += Windows installation instructions = + +== Binary packages == + +Download section offers two packages: an MSI installer and a ZIP archive. To install Spek, download the MSI installer, double-click it and follow the instructions. + +If by some reason you don't want to use the installer, you can download the ZIP archive and unpack it somewhere on your disk. Spek executable is located under .\Spek\bin\spek.exe \ No newline at end of file