blob: 7cf195c2b5ef0ac31f46770e55aa0d6ce18eca7b (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Adrián Pérez de Castro <aperez@igalia.com>
pkgname='sile-git'
pkgdesc='Modern typesetting system inspired by TeX'
pkgver='0.9.2'
_branch='master'
pkgrel='1'
arch='any'
url='http://www.sile-typesetter.org/'
license='MIT'
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git://github.com/simoncozens/${pkgname%-git}.git#branch=${_branch}")
sha512sums=('SKIP')
depends=('lua-lpeg'
'lua-expat'
'harfbuzz')
prepare () {
cd "${pkgname%-git}"
./bootstrap.sh
}
build () {
cd "${pkgname%-git}"
./configure
make
}
package () {
cd "${pkgname%-git}"
make install DESTDIR="${pkgdir}/"
}
|