desktop/rosegarden/PKGBUILD

34 lines
900 B
Bash
Raw Normal View History

2010-07-24 04:23:00 +08:00
pkgname=rosegarden
2015-11-11 19:04:08 +08:00
pkgver=15.10.2
2011-02-10 00:13:02 +08:00
pkgrel=1
2010-07-24 04:23:00 +08:00
pkgdesc="MIDI/audio sequencer and notation editor"
2013-05-14 06:21:12 +08:00
arch=('x86_64')
2010-07-24 04:23:00 +08:00
url="http://www.rosegardenmusic.com/"
license=('GPL')
depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils'
'perl' 'qt' 'shared-mime-info')
makedepends=('pkgconfig' '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')
categories=('multimedia')
2010-07-24 04:23:00 +08:00
install=$pkgname.install
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
2015-11-11 19:04:08 +08:00
sha256sums=('d4e8488c3447763a7d4b57925dc9d462e9e21efe647962431ea21aad8930a0a3')
2010-07-24 04:23:00 +08:00
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}