blob: 501b36c491c789e21b18dcb28a1546f74d7f184d (
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
42
43
|
# 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=r10476
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' 'portmidi' 'guile2.0')
makedepends=('intltool' 'git' 'rubberband')
source=("git://git.savannah.gnu.org/denemo.git")
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
pkgver() {
cd ${pkgname%-git}
printf r%s $(git rev-list --count HEAD)
}
# prepare() {
# cd ${pkgname%-git}
# patch -Np1 < "$srcdir"/no_portaudio.patch
# }
build() {
cd ${pkgname%-git}
[ -x configure ] || ./autogen.sh
./configure --prefix=/usr --sysconfdir=/etc --disable-portaudio
make
}
package() {
cd ${pkgname%-git}
make DESTDIR="$pkgdir" install
}
md5sums=('SKIP')
|