mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
643 B
Bash
22 lines
643 B
Bash
# $Id: PKGBUILD 46936 2009-07-22 07:40:07Z andrea $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
|
|
pkgname=fluidsynth
|
|
pkgver=1.0.9
|
|
pkgrel=1.1
|
|
pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications."
|
|
arch=("i686" "x86_64")
|
|
url="http://www.fluidsynth.org/"
|
|
depends=('jack-audio-connection-kit' 'ladspa')
|
|
options=('!libtool')
|
|
license=('LGPL')
|
|
source=("http://savannah.nongnu.org/download/fluid/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('5847552e09528fc91dca88f10cb9391c')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--enable-ladspa || return 1
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
}
|