ratex
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
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="Ultra-fast, pure-Rust TeX engine and typesetting toolchain (built from source)"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/leoliu0/ratex"
8
license=('MIT' 'Apache-2.0')
9
depends=('gcc-libs')
10
makedepends=('cargo')
11
provides=('ratex' 'texmk' 'pdflatex' 'xelatex' 'lualatex')
12
conflicts=('ratex-bin')
13
options=('!lto')
14
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/leoliu0/ratex/archive/refs/tags/v${pkgver}.tar.gz")
15
sha256sums=('c177de1eaa509e807a78e19c3cf6187ac8ed3d38b68e37ee2348d88515777945')
16
17
build() {
18
cd "${pkgname}-${pkgver}"
19
cargo build --release --locked --bin texmk
20
}
21
22
package() {
23
cd "${pkgname}-${pkgver}"
24
install -Dm755 target/release/texmk "$pkgdir/usr/bin/texmk"
25
for alias in pdflatex xelatex lualatex; do
26
ln -sf texmk "$pkgdir/usr/bin/$alias"
27
done
28
if [ -f LICENSE-MIT ]; then
29
install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
30
fi
31
if [ -f LICENSE-APACHE ]; then
32
install -Dm644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
33
fi
34
}
35
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-16 11:22:36 | Low | 1 |
| 2026-09-16 09:21:46 | Low | 1 |