You are not logged in.

#1 2008-10-20 23:25:32

luuuciano
Member
Registered: 2007-01-27
Posts: 279

[request] muse-streaming (orphaned, do not compile)

Hi!

maybe someone is interested in addopt this package?
http://aur.archlinux.org/packages.php?ID=1342
actually do not compile sad


I arch, you arch, he arch, she arch, we arch, they arch...

Offline

#2 2008-10-21 01:21:02

foutrelis
Developer/TU
From: Athens, Greece
Registered: 2008-07-28
Posts: 618
Website

Re: [request] muse-streaming (orphaned, do not compile)

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

Board footer

Powered by FluxBB