You are not logged in.
Hi!
maybe someone is interested in addopt this package?
http://aur.archlinux.org/packages.php?ID=1342
actually do not compile ![]()
I arch, you arch, he arch, she arch, we arch, they arch...
Offline
I got it to compile (it needed a tiny change) but it didn't function very well (kept on playing songs in fast-forward O.o).
Anyway, here's the updated PKGBUILD if you want to give it a try yourself:
# Contributor: Pierluigi <pierluigi88@gmail.com>
pkgname=muse-streaming
pkgver=0.9.2
pkgrel=4
pkgdesc="An application for the mixing, encoding, and network streaming of sound"
arch=('i686' 'x86_64')
url="http://muse.dyne.org/"
license=('GPL')
depends=('gtk2' 'lame' 'libvorbis' 'libsndfile')
makedepends=('pkgconfig')
source=(ftp://ftp.dyne.org/muse/sources/MuSE-$pkgver.tar.gz
linklist.patch)
md5sums=('7b3b01a35af79b8852ee6b0f033ff46c'
'50dcf69cb6b65a90ee9d20a7e6aa433d')
build() {
cd "$srcdir/MuSE-$pkgver"
patch -p0 -i "$srcdir/linklist.patch"
# gcc 4.3
sed -i 's|<iostream.h>|<iostream>|' src/libmpeg/mpegtoraw.cc
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir/" install
mv "$pkgdir/usr/doc" "$pkgdir/usr/share/doc"
}Offline