ratex

LOW
maintainer leoliu0 0 votes scanned 2026-09-16 11:22:36.378817
View on AUR
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>
2pkgname=ratex
3pkgver=0.1.0
4pkgrel=1
5pkgdesc="Ultra-fast, pure-Rust TeX engine and typesetting toolchain (built from source)"
6arch=('x86_64' 'aarch64')
7url="https://github.com/leoliu0/ratex"
8license=('MIT' 'Apache-2.0')
9depends=('gcc-libs')
10makedepends=('cargo')
11provides=('ratex' 'texmk' 'pdflatex' 'xelatex' 'lualatex')
12conflicts=('ratex-bin')
13options=('!lto')
14source=("${pkgname}-${pkgver}.tar.gz::https://github.com/leoliu0/ratex/archive/refs/tags/v${pkgver}.tar.gz")
15sha256sums=('c177de1eaa509e807a78e19c3cf6187ac8ed3d38b68e37ee2348d88515777945')
16
17build() {
18 cd "${pkgname}-${pkgver}"
19 cargo build --release --locked --bin texmk
20}
21
22package() {
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)SeverityRules
2026-09-16 11:22:36 Low 1
2026-09-16 09:21:46 Low 1

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion