summaryrefslogtreecommitdiff
path: root/testing/rosegarden/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-24 00:01:46 +0000
committerroot <root@rshg054.dnsready.net>2012-07-24 00:01:46 +0000
commit56913dc8679143308408596f2872f3894b3ab9d0 (patch)
tree6a8108f4290a1841aacb64924af58ad547790aa5 /testing/rosegarden/PKGBUILD
parenta65eb6fe2ea0ffa22c65de34506c88aeeb3c88ee (diff)
Tue Jul 24 00:01:46 UTC 2012
Diffstat (limited to 'testing/rosegarden/PKGBUILD')
-rw-r--r--testing/rosegarden/PKGBUILD43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/rosegarden/PKGBUILD b/testing/rosegarden/PKGBUILD
new file mode 100644
index 000000000..3fefe02e1
--- /dev/null
+++ b/testing/rosegarden/PKGBUILD
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 163958 2012-07-22 18:37:45Z schiv $
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+# Contributor: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: damir <damir@archlinux.org>
+# Contributor: Robert Emil Berge <robert@rebi.no>
+
+pkgname=rosegarden
+pkgver=12.04
+pkgrel=2
+pkgdesc="MIDI/audio sequencer and notation editor"
+arch=('i686' 'x86_64')
+url="http://www.rosegardenmusic.com/"
+license=('GPL')
+depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils'
+ 'perl' 'qt' 'shared-mime-info')
+makedepends=('imake')
+optdepends=('lilypond: notation display'
+ 'cups: printing support'
+ 'okular: print preview, or any other PDF viewer'
+ 'timidity++: MIDI playback, or any other softsynth'
+ 'flac'
+ 'wavpack')
+[ "$CARCH" = "i686" ] && optdepends+=('dssi-vst: win32 VST support')
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
+md5sums=('b11f4fcad69df45365d2125181524559')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # lrdf + raptor2 compatibility
+ export lrdf_CFLAGS="$(pkg-config --cflags raptor2)"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: