ratex-bin
LOW
maintainer leoliu0
0 votes
scanned 2026-09-16 11:22:36.378817
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Leo Liu <leoliu0@users.noreply.github.com>
2
pkgname=ratex-bin
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="Ultra-fast, pure-Rust TeX engine and typesetting toolchain (pre-compiled binary)"
6
arch=('x86_64')
7
url="https://github.com/leoliu0/ratex"
8
license=('MIT' 'Apache-2.0')
9
provides=('ratex' 'texmk' 'pdflatex' 'xelatex' 'lualatex')
10
conflicts=('ratex')
11
source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/leoliu0/ratex/releases/download/v${pkgver}/tex-suite-v${pkgver}-linux-x86_64.tar.gz")
12
sha256sums_x86_64=('ee71fb31c1d0ecc33f4c9431881ede30f583e8eee3ee8a4fbb65883f02a4ed1f')
13
14
package() {
15
cd "$srcdir/tex-suite-linux-x86_64"
16
install -Dm755 bin/texmk "$pkgdir/usr/bin/texmk"
17
for alias in pdflatex xelatex lualatex; do
18
ln -sf texmk "$pkgdir/usr/bin/$alias"
19
done
20
if [ -d share/tex-suite/texmf ]; then
21
install -d "$pkgdir/usr/share/tex-suite"
22
cp -a share/tex-suite/* "$pkgdir/usr/share/tex-suite/"
23
fi
24
if [ -f LICENSE-MIT ]; then
25
install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
26
fi
27
if [ -f LICENSE-APACHE ]; then
28
install -Dm644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
29
fi
30
}
31
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-16 11:22:36 | Low | 1 |
| 2026-09-16 09:21:46 | Low | 1 |