PKGBUILDs/extra/muse/PKGBUILD
2009-10-09 21:23:22 -05:00

31 lines
1.1 KiB
Bash

# $Id: PKGBUILD 53030 2009-09-25 06:16:35Z eric $
# Maintainer: damir <damir@archlinux.org>
pkgname=muse
pkgver=1.0rc3
pkgrel=1
pkgdesc="A MIDI/Audio sequencer with recording and editing capabilities"
arch=('i686' 'x86_64')
url="http://muse-sequencer.org/"
license=('GPL')
depends=('qt3' 'fluidsynth' 'graphviz' 'libsamplerate')
makedepends=('jade')
options=('!libtool')
install=muse.install
source=(http://downloads.sourceforge.net/sourceforge/lmuse/$pkgname-$pkgver.tar.gz muse-glibc2.10.patch)
md5sums=('533a638539a85318034a2764740d11d9' '91ca69e979c9fe0a3c43eae21b996a74')
sha1sums=('5e1e162d2ba5b73cc9c2d20ee3eb543fa72f783c' '5ab945077f17e485101e91aabe9303c69509c483')
build() {
cd "$srcdir/$pkgname-$pkgver"
. /etc/profile.d/qt3.sh
unset LDFLAGS
(cd muse ; patch -p0 < ../../muse-glibc2.10.patch) || return 1
./configure --prefix=/usr --enable-maintainer-mode \
--disable-doxy-treeview \
--enable-optimize \
--enable-vst \
--disable-suid-build || return 1
make || return 1
make DESTDIR="$pkgdir" install || return 1
}