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:
Rasmus Thomsen 2020-03-03 09:35:25 +01:00
parent 4ca832f450
commit f41b896df8
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
#!/bin/sh
texhash
fmtutil-sys --all
texhash > /dev/null 2>&1 > /dev/null
fmtutil-sys --all > /dev/null
exit 0