A Crux port for AlsaPlayer

Since I mentioned it, I’ll post the revised Crux port for AlsaPlayer here. I built this one off the one in the han repositories. This allows streaming Internet audio, mp3 playback, ogg formats and the 3D visualizations too. It also enables the GTK2 interface while allowing the console control as well.

# Description: pcm audio player for Linux and other similar systems
# URL:         http://www.alsaplayer.org/
# Maintainer:  
# Packager:    
# Depends on:  alsa-lib libmad libtheora

name=alsaplayer
version=0.99.80
release=1
source="http://www.alsaplayer.org/alsaplayer-$version.tar.gz"

build()
{
    cd $name-$version
    ./configure \
        --prefix=/usr \
	--mandir=/usr/man \
	--enable-opengl \
	--enable-oggvorbis \
	--enable-mad \
	--disable-jack \
	--disable-mikmod \
	--disable-esd \
	--disable-sparc \
	--disable-oss \
	--disable-sgi \
	--disable-nas \
	--disable-audiofile \
        --disable-nls
    make
    make install DESTDIR=$PKG
}

I tried to space out the options available, so they’re easy to disable or enable according to your hardware and sound subsystem. Feel free to correct any of this, if it looks out of whack. 😉

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s