blob: 94cc3954d4f80beaea441bc21d26c3023486d315 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintainer: Mohammadreza Abdollahzadeh <morealaz at gmail dot com>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Nicholas Novak <34256932+NickyBoy89@users.noreply.github.com>
pkgname=typst-git
_pkgname=${pkgname%-git}
pkgver=0.11.0.r446.ge0d80968
pkgrel=1
epoch=1
pkgdesc='A markup-based typesetting system for the sciences'
arch=(x86_64)
url="https://$_pkgname.app"
_url="https://github.com/$_pkgname/$_pkgname"
license=(Apache-2.0)
depends=(gcc-libs # libgcc_s.so
glibc # libc.so libm.so
openssl libssl.so libcrypto.so)
makedepends=(cargo
git)
optdepends=('otf-libertinus: additional weights and variants for default font'
'ttf-linux-libertine: legacy default font prior to v0.12.0')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=("$_pkgname::git+$_url.git")
sha256sums=('SKIP')
prepare() {
cd "$_pkgname"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
pkgver() {
cd "$_pkgname"
git describe --long --tags --abbrev=8 |
sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g;s/rc.\.//'
}
_srcenv() {
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
}
build() {
cd "$_pkgname"
_srcenv
CFLAGS+=' -ffat-lto-objects'
export TYPST_VERSION="${pkgver%\.g*} (${pkgver#*\.g})"
export GEN_ARTIFACTS=artifacts/
export OPENSSL_NO_VENDOR=true
cargo build -p typst-cli --frozen --release
}
check() {
cd "$_pkgname"
_srcenv
cargo test --workspace --frozen
}
package() {
cd "$_pkgname"
local _artifacts='crates/typst-cli/artifacts'
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$_pkgname"
install -Dm0644 -t "$pkgdir/usr/share/man/man1/" "$_artifacts/$_pkgname"*.1
install -Dm0644 -t "$pkgdir/usr/share/zsh/site-functions/" "$_artifacts/_$_pkgname"
install -Dm0644 -t "$pkgdir/usr/share/fish/vendor_completions.d/" "$_artifacts/$_pkgname.fish"
install -Dm0644 "$_artifacts/$_pkgname.bash" "$pkgdir/usr/share/bash-completion/completions/$_pkgname"
}
|