desktop/rosegarden/PKGBUILD
2016-01-04 21:08:23 +01:00

34 lines
951 B
Bash

pkgname=rosegarden
pkgver=15.12.1
_pkgver=15.12
pkgrel=1
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' 'qt' 'shared-mime-info' 'ladspa' 'libsndfile' 'lilypond')
makedepends=('pkgconfig' '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=('b3aff1057a5ebba216982b17ed7f74d7283f6fb6c8714a7e12b91434a2077450')
build() {
cd "$srcdir/$pkgname-$_pkgver"
cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/$pkgname-$_pkgver"
make DESTDIR="$pkgdir/" install
}