20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
# Description: Adjusts an audio mixer from X, the console, a terminal, the command line or a script.
|
|
# URL: http://jpj.net/~trevor/aumix.html
|
|
# Maintainer: Daniel Walpole, daniel at walpole dot id dot au
|
|
# Depends on: gtk
|
|
|
|
name=aumix
|
|
version=2.8
|
|
release=4
|
|
source=(http://www.jpj.net/~trevor/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-nls \
|
|
--without-gtk1 \
|
|
--without-alsa
|
|
make -C src
|
|
make DESTDIR=$PKG install
|
|
}
|