mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
community/texlive: fix license and redirect stdout to /dev/null in trigger
Otherwise the trigger spams the terminal a lot. Don't redirect stderr since that mentions some modules which aren't being built due to missing tex packages (I suppose because we disable those in our build), which is valuable information.
This commit is contained in:
parent
4ca832f450
commit
f41b896df8
@ -2,11 +2,11 @@
|
||||
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
||||
pkgname=texlive
|
||||
pkgver=20190410
|
||||
pkgrel=8
|
||||
pkgrel=9
|
||||
pkgdesc="Comprehensive TeX document production system"
|
||||
url="https://tug.org/texlive/"
|
||||
arch="all"
|
||||
license="GPL"
|
||||
license="GPL-2.0-or-later AND GPL-3.0-or-later"
|
||||
depends="perl texmf-dist>=2018.50036"
|
||||
makedepends="freetype-dev libpng-dev poppler-dev icu-dev harfbuzz-dev
|
||||
cairo-dev pixman-dev zziplib-dev libpaper-dev graphite2-dev
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
texhash
|
||||
fmtutil-sys --all
|
||||
texhash > /dev/null 2>&1 > /dev/null
|
||||
fmtutil-sys --all > /dev/null
|
||||
exit 0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user