mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 07:47:22 +08:00
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=rosegarden
|
|
pkgver=12.04
|
|
pkgrel=1
|
|
pkgdesc="MIDI/audio sequencer and notation editor"
|
|
arch=('i686' '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')
|
|
[ "$CARCH" = "i686" ] && optdepends=("${optdepends[@]}"
|
|
'dssi-vst: win32 VST support')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b11f4fcad69df45365d2125181524559')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|