desktop/rosegarden/PKGBUILD
2016-03-01 23:28:59 +01:00

34 lines
949 B
Bash

pkgname=rosegarden
pkgver=16.02
_pkgver=16.02
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=('dee4dbe9e657482cc708b8159ae80300acf0009cd10c55ad8b1e95aada813be7')
build() {
cd "$srcdir/$pkgname-$_pkgver"
cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/$pkgname-$_pkgver"
make DESTDIR="$pkgdir/" install
}