mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-12 01:44:40 +08:00
39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=rosegarden
|
|
pkgver=12.12.25
|
|
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')
|
|
screenshot=('http://www.rosegardenmusic.com/images/snap-10.02-1.png')
|
|
install=$pkgname.install
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('8c98e7d3d448b07d9dc079b28bd37eba')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|