26 lines
523 B
Plaintext
26 lines
523 B
Plaintext
# Description: midi to wav converter
|
|
# URL: http://timidity.sourceforge.net/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: alsa-lib, flac, libvorbis
|
|
|
|
name=timidity++
|
|
version=2.14.0
|
|
release=1
|
|
source=(
|
|
http://downloads.sourceforge.net/timidity/TiMidity++-$version.tar.xz
|
|
)
|
|
|
|
build(){
|
|
cd TiMidity++-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--enable-server \
|
|
--enable-audio=alsa,vorbis,flac,speex,wav \
|
|
--with-default-output=vorbis
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|