Package Details: audacious2 3.2.4-3

Git Clone URL: https://aur.archlinux.org/audacious2.git (read-only, click to copy)
Package Base: audacious2
Description: Lightweight, GTK-based advanced audio player focused on audio quality. Gtk2 version.
Upstream URL: http://audacious-media-player.org/
Licenses: GPL3
Submitter: speps
Maintainer: bidulock
Last Packager: bidulock
Votes: 9
Popularity: 0.000000
First Submitted: 2011-07-26 19:19 (UTC)
Last Updated: 2016-05-30 00:40 (UTC)

Latest Comments

bidulock commented on 2016-05-30 00:32 (UTC)

Does anyone know the purpose of this package? audacious from extra uses gtk2...

Alister.Hood commented on 2014-10-17 03:46 (UTC)

People might like to know that audacious-git uses gtk2 now.

speps commented on 2012-04-29 15:49 (UTC)

@ Hi and thanks for reporting the issue. DSO link fixed without bumping release. Btw, please next time do not flag as outdated if it is not. Also, use pastebin services for posting PKGBUILDs or logs. Cheers

commented on 2012-04-29 11:38 (UTC)

Can't compile with your PKGBUILD, after patching a Makefile it's working again, here's the PKGBUILD I used: # Maintainer : SpepS <dreamspepser at yahoo dot it> # Contributor: Alexander Fehr <pizzapunk gmail com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Gaetan Bisson <bisson@archlinux.org> _name=audacious pkgname=${_name}2 pkgver=3.2.2 pkgrel=1 pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality. Gtk2 version.' arch=('i686' 'x86_64') url='http://audacious-media-player.org/' license=('GPL3') depends=('gtk2' 'libmcs' 'dbus-glib' 'libguess' 'libsm' 'desktop-file-utils' 'hicolor-icon-theme') optdepends=("$pkgname-plugins: required for all" 'unzip: zipped skins support') install="$pkgname.install" source=("http://distfiles.audacious-media-player.org/$_name-$pkgver.tar.gz" "http://piie.net/files/audacious2_gobj_fix.patch") md5sums=('e7b1fc6eaf2acfcceb77ba8c98d113ee' '22fb17810623784ae65111a3bbcc410b') build() { cd "$srcdir/$_name-$pkgver" # Patch to let this coexist with audacious for _i in acious client core gui tag tool; do msg "Processing aud$_i .." sed -i "s|\([aA]\)\(ud${_i}2\{0,1\}\)|\1ud${_i}2|g" `grep -rl "[aA]ud$_i" .` for _d in `find . -depth -type d -name "*[aA]ud$_i*"`; do _n="$(echo $_d | sed "s|\([aA]\)\(ud${_i}2\{0,1\}\)|\1ud${_i}2|g")" msg "Moving $_d -> $_n" && mv "$_d" "$_n" done for _f in `find . -depth -type f -name "*[aA]ud$_i*"`; do _n="$(echo $_f | sed "s|\([aA]\)\(ud${_i}2\{0,1\}\)|\1ud${_i}2|g")" msg "Renaming $_f -> $_n" && mv "$_f" "$_n" done done patch -p0 < ../audacious2_gobj_fix.patch ./configure --prefix=/usr \ --disable-gtk3 make } package() { cd "$srcdir/$_name-$pkgver" make DESTDIR="$pkgdir/" install }