blob: a904b97b660424003694c12bbc5b023ed634051c (
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
44
45
46
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=speedata-publisher
pkgver=4.19.14
pkgrel=1
pkgdesc='a database publishing software that creates high-quality layouted PDFs fully automatically'
arch=(x86_64)
url='https://github.com/speedata/publisher'
license=(AGPL-3.0-only)
depends=(crimson-pro-font
glibc
tex-gyre-fonts
tex-gyre-fonts
ttf-camingocode)
makedepends=(go
lua
ruby-rake)
provides=(libsplib.so
luaglue.so)
_archive="${pkgname#*-}-$pkgver"
source=("$url/archive/v$pkgver/$_archive.tar.gz")
sha256sums=('db43bb600fb58ea22e0372c0dfac7b4661fcd3a15cd79c9ced3f2b26f3becaad')
prepare() {
cd "$_archive"
# sed -i \
# -e '/^installdir/s!__FILE__!"/usr/bin"!' \
# -e '/^srcdir/as!"src"!"share/speedata"!' \
# Rakefile
}
build() {
cd "$_archive"
rake build
rake buildlib
}
package() {
cd "$_archive"
# Upstream project has no installation targets
# https://github.com/speedata/publisher/issues/551
# rake install
install -Dm0755 -t "$pkgdir/usr/bin/" bin/sp
install -Dm0755 -t "$pkgdir/usr/lib/" build/dylib/{luaglue,libsplib}.so
install -Dm0644 -t "$pkgdir/usr/include/" build/dylib/libsplib.h
}
|