mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=rosegarden
|
|
pkgver=11.06
|
|
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')
|
|
[ "$CARCH" = "i686" ] && optdepends=("${optdepends[@]}"
|
|
'dssi-vst: win32 VST support')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('77ab43d06de53ace338843ff82e26288')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|