desktop/rosegarden/PKGBUILD
2017-04-22 12:10:18 +02:00

34 lines
970 B
Bash

pkgname=rosegarden
pkgver=17.04
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' '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=($pkgname-$pkgver::http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
sha256sums=('988a6141c5b0a8e85c029f650de78bf57100c4d778c22d0194b0692584640ece')
build() {
cd "$srcdir/$pkgname-$pkgver"
cmake ./ -DBUILD_TESTING=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}