texlive-bin: export MANPATH

This commit is contained in:
Karel Balej 2022-04-23 18:26:03 +02:00 committed by Leah Neukirchen
parent 4d933ab12b
commit 37e10282c3
3 changed files with 13 additions and 11 deletions

View file

@ -5,21 +5,21 @@
===================================================================== =====================================================================
This package sets the location of TeXLive binary using the file: This package sets the location of TeX Live binaries and manual
/etc/profile.d/texlive.sh. pages using the file: /etc/profile.d/texlive.sh.
see http://www.tug.org/texlive/quickinstall.html for details see http://www.tug.org/texlive/quickinstall.html for details
Check if your PATH is update correctly with: Check if your PATH and MANPATH are updated correctly with:
$ printenv $ printenv
You may need to reboot to ensure that PATH is update correctly, You may need to reboot to ensure that the paths are updated
for the impatients, if you want you can type correctly, for the impatients, if you want you can type
$ source /etc/profile $ source /etc/profile
and check the PATH. and check PATH and MANPATH.
===================================================================== =====================================================================

View file

@ -1,2 +1,4 @@
# location of the TeXLive binaries # location of the TeXLive binaries
export PATH=$PATH:/opt/texlive/@@VERSION@@/bin/@@ARCH@@ export PATH=$PATH:/opt/texlive/@@VERSION@@/bin/@@ARCH@@
# and manual pages
export MANPATH=$MANPATH:/opt/texlive/@@VERSION@@/texmf-dist/doc/man

View file

@ -1,7 +1,7 @@
# Template file for 'texlive-bin' # Template file for 'texlive-bin'
pkgname=texlive-bin pkgname=texlive-bin
version=2022 version=2022
revision=1 revision=2
depends="texlive${version}-bin" depends="texlive${version}-bin"
short_desc="TeX Live Binary distribution through tl-install (newest version)" short_desc="TeX Live Binary distribution through tl-install (newest version)"
maintainer="Leah Neukirchen <leah@vuxu.org>" maintainer="Leah Neukirchen <leah@vuxu.org>"