blob: 438ffc31837030f4b7301ded08d7d0759c9a7624 (
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
|
# Maintainer: Br Anthony VanBerkum <anthonyvbop AT gmail DOT com>
# Contributor: LaƩrcio de Sousa <lbsousajr AT gmail DOT com>
# Contributor: David Gippner davidgippner at googlemail dot com
pkgbase=gregorio
pkgname=$pkgbase
pkgver=4.1.0
pkgrel=1
pkgdesc="Command-line tool to typeset Gregorian chant"
url=http://gregorio-project.github.io
arch=("i686" "x86_64")
license=("GPL")
depends=("texlive-core" "texlive-fontsextra" "texlive-bin" "texlive-formatsextra" "texlive-latexextra")
conflicts=("gregorio-svn" "gregorio-git" "gregoriotex")
provides=("gregorio")
install=gregorio.install
source=("https://github.com/gregorio-project/gregorio/releases/download/v$pkgver/gregorio-$pkgver.tar.bz2")
sha256sums=("0583fdd364c64efe8c5964e3b289f63eccc9aaf11d8598e93f43d2fe9ea38d38")
prepare() {
# Standardise src dir name without using a private variable.
mv "$srcdir/$pkgbase-$pkgver/" "$srcdir/$pkgbase/"
msg "Configuring..."
cd "$srcdir/$pkgbase/"
autoreconf -f -i
./configure --prefix=/usr || return 1
}
build() {
msg "Compiling gregorio..."
cd "$srcdir/$pkgbase/"
make -j || return 1
}
package() {
cd "$srcdir/$pkgbase/"
msg "Installing gregorio..."
make -j DESTDIR="$pkgdir/" install || return 1
msg "Installing fonts and TeX files..."
cd "$srcdir/$pkgbase/"
./install-gtex.sh dir:$pkgdir/usr/share/texmf-dist || return 1
}
|