1
0
Fork 0
mirror of https://github.com/tomka/rechnung.git synced 2024-05-03 11:33:42 +02:00

Use a better installation default target

~/texmf seems to be more commonly recommended.
This commit is contained in:
Tom Kazimiers 2020-07-12 23:14:30 +02:00
parent 9137350747
commit 20d7662ef6
2 changed files with 6 additions and 1 deletions

View file

@ -38,6 +38,9 @@ else
# macOS # macOS
prefix := $(prefix)/Library/texmf prefix := $(prefix)/Library/texmf
endif endif
ifeq ($(detected_OS),Linux)
prefix := $(prefix)/texmf
endif
endif endif
texdir = $(prefix)/tex/inputs texdir = $(prefix)/tex/inputs
docdir = $(texdir)/doc docdir = $(texdir)/doc

View file

@ -33,5 +33,7 @@ Die installation kann entweder durch das Kommando `make install && make install.
* Zuerst rechnung.sty erzeugen: `latex rechnung.ins` * Zuerst rechnung.sty erzeugen: `latex rechnung.ins`
* Dann die Dokumentation: `latex rechnung.dtx` * Dann die Dokumentation: `latex rechnung.dtx`
* rechnung.sty muss in den Pfad von LaTeX 2e `.../tex/latex/`, wobei „`...`“ systemspezifisch ist. * rechnung.sty muss in den Pfad von LaTeX 2e `.../tex/latex/`, wobei „`...`“
systemspezifisch ist. In den meisten Linux-Distributionen ist `~/texmf` der
typische Ort, sodass der gesamte Pfad `~/texmf/tex/latex/` wäre.