desktop/rosegarden/PKGBUILD
2016-07-26 21:00:58 +02:00

35 lines
968 B
Bash

pkgname=rosegarden
pkgver=16.06
_pkgver=16.06
pkgrel=2
pkgdesc="MIDI/audio sequencer and notation editor"
arch=('x86_64')
url="http://www.rosegardenmusic.com/"
license=('GPL')
depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils' 'liblo' 'libsamplerate'
'perl' 'qt5-tools' 'shared-mime-info' 'ladspa' 'libsndfile' 'lilypond')
makedepends=('imake' 'cmake')
optdepends=('cups: printing support'
'okular: print preview, or any other PDF viewer'
'timidity++: MIDI playback, or any other softsynth'
'flac'
'wavpack')
categories=('multimedia')
install=$pkgname.install
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
sha256sums=('1044334f2c1a2ac7560d80910e0721c8913bd924f8185a393f630c89020340db')
build() {
cd "$srcdir/$pkgname-$_pkgver"
cmake ./ -DBUILD_TESTING=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/$pkgname-$_pkgver"
make DESTDIR="$pkgdir/" install
}