summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 16c86597ad0abb3b2fdc52410d673bc5cf99ffb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: grufo <madmurphy333 AT gmail DOT com>
# Contributor: foutrelis 
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Philipp Sandhaus <philipp.sandhaus@gmx.de>
# Contributor: Robert Emil Berge <filoktetes@linuxophic.org>
# Contributor: Gnud <ach.gnud@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>

pkgname='denemo'
pkgver='2.6.0'
pkgrel=1
pkgdesc='A music score editor'
arch=('x86_64')
url='http://www.denemo.org'
license=('GPL')
depends=('aubio' 'lilypond' 'gtk3' 'libxml2' 'fftw' 'librsvg' 'fluidsynth'
	 'libsmf' 'evince' 'gtksourceview3' 'guile1.8' 'rubberband')
makedepends=('intltool' 'git')
noextract=("${pkgname}-${pkgver}.tar.gz")
validpgpkeys=('C66734FA5D60E4DDD882EF81AE6F83BB6C574235') # Jeremiah Benham, AE6F83BB6C574235
source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
sha256sums=('4be5970c69847f97f1f876275c9744e5034e7c983b12a1045fb20c236494b55d'
            'SKIP')

prepare() {
	cd "${srcdir}"
	LC_ALL='en_US.UTF-8' tar xzf "${pkgname}-${pkgver}.tar.gz"
}

build() {
	cd "${pkgname}-${pkgver}"
	[ -x configure ] || ./autogen.sh
	./configure --prefix=/usr --sysconfdir=/etc --disable-rpath --disable-portaudio --disable-portmidi  
	make
}

package() {
	cd "${pkgname}-${pkgver}"
	make DESTDIR="${pkgdir}" install
}