2011-01-26 12:11:10 +08:00
|
|
|
#
|
2015-03-22 11:01:26 +08:00
|
|
|
# Apps Packages for Chakra, part of chakraos.org
|
2011-01-26 12:11:10 +08:00
|
|
|
#
|
2012-03-14 22:04:42 +08:00
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
2011-01-26 12:11:10 +08:00
|
|
|
|
|
|
|
pkgname=musescore
|
2015-03-22 11:01:26 +08:00
|
|
|
pkgver=2.0.0
|
|
|
|
pkgrel=1
|
2012-03-14 22:04:42 +08:00
|
|
|
pkgdesc="A music score editor written in Qt"
|
2013-03-02 01:29:44 +08:00
|
|
|
arch=('x86_64')
|
2011-01-26 12:11:10 +08:00
|
|
|
url="http://www.musescore.org/en/"
|
|
|
|
license=('GPL')
|
2015-03-22 11:01:26 +08:00
|
|
|
depends=('libpulse' 'portaudio' 'qt5-quick1' 'qt5-svg' 'qt5-tools')
|
|
|
|
makedepends=('cmake' 'doxygen' 'lame' 'qt5-script' 'texlive-core')
|
|
|
|
optdepends=('lame: MP3 export')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('multimedia')
|
2012-03-14 22:04:42 +08:00
|
|
|
install=musescore.install
|
2015-03-22 11:01:26 +08:00
|
|
|
source=("musescore-${pkgver}.tar.gz::https://github.com/musescore/MuseScore/archive/v${pkgver}.tar.gz"
|
2013-03-17 09:42:11 +08:00
|
|
|
'musescore.conf')
|
2015-03-22 11:01:26 +08:00
|
|
|
sha256sums=('1c88d64f0b020b1eec9fd4d181353da07948cc08c6e2a35c5ea97c8e6ffa8ea8'
|
|
|
|
'397b5431137d468a64b768670efdf385c27cb7298ee9295a32323a2610427928')
|
2012-03-14 22:04:42 +08:00
|
|
|
|
2011-01-26 12:11:10 +08:00
|
|
|
build() {
|
2015-03-22 11:01:26 +08:00
|
|
|
cd MuseScore-${pkgver}
|
2013-03-02 01:29:44 +08:00
|
|
|
|
2015-03-22 11:01:26 +08:00
|
|
|
make PREFIX='/usr' release
|
2011-01-26 12:11:10 +08:00
|
|
|
}
|
2013-03-17 09:42:11 +08:00
|
|
|
|
2011-01-26 12:11:10 +08:00
|
|
|
package() {
|
2015-03-22 11:01:26 +08:00
|
|
|
cd MuseScore-${pkgver}/build.release
|
2013-03-17 09:42:11 +08:00
|
|
|
|
2015-03-22 11:01:26 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m 644 ../assets/musescore-icon-round-512.png "${pkgdir}"/usr/share/pixmaps/mscore.png
|
2011-01-26 12:11:10 +08:00
|
|
|
}
|