blob: 182bedbb61327961de6717258c02e367568ea5fd (
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
41
|
# 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>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=denemo-git
pkgver=2.5.1.r11060.198f7a3c2
pkgrel=1
epoch=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' 'portmidi' 'guile' 'rubberband')
makedepends=('intltool' 'git')
source=("git://git.savannah.gnu.org/denemo.git")
md5sums=('SKIP')
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
pkgver() {
cd ${pkgname%-git}
printf %s.r%s.%s $(awk -F, '/AC_INIT/ {print $2}' configure.ac | tr -d \[ | tr -d \]) \
$(git rev-list --count HEAD) $(git rev-parse --short HEAD)
}
build() {
cd ${pkgname%-git}
[ -x configure ] || ./autogen.sh
./configure --prefix=/usr --sysconfdir=/etc --disable-rpath --disable-portaudio --disable-portmidi
make
}
package() {
cd ${pkgname%-git}
make DESTDIR="$pkgdir" install
}
|