mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
39 lines
967 B
Bash
39 lines
967 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=rosegarden
|
|
pkgver=14.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'
|
|
'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')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('f649556e5149650211d88684b1168ab4')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|