Last active
February 14, 2025 13:29
-
-
Save tobywf/aeeeee63053aaaa841b4032963406684 to your computer and use it in GitHub Desktop.
Build dvisvgm and kpathsea on macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -xeuo pipefail | |
IFS=$'\n\t' | |
PREFIX="${1:-/usr/local/dvisvgm}" | |
TEX="$(kpsewhich -var SELFAUTOLOC)" | |
echo "$PREFIX, $TEX" | |
brew install automake freetype ghostscript potrace | |
# download the sources | |
mkdir -p "$PREFIX/source/texk" | |
cd "$PREFIX/source/" | |
# see https://www.tug.org/texlive/svn/ | |
rsync -av --exclude=.svn tug.org::tldevsrc/Build/source/build-aux . | |
rsync -av --exclude=.svn tug.org::tldevsrc/Build/source/texk/kpathsea texk/ | |
git clone [email protected]:mgieseki/dvisvgm.git | |
# compile kpathsea | |
cd texk/kpathsea | |
# patch SELFAUTOLOC | |
perl -0777 -i.bak \ | |
-pe 's|(kpathsea_selfdir \(kpathsea kpse, const_string argv0\)\n{)|$1\n return xstrdup("'"$TEX"'");\n|g' \ | |
progname.c | |
./configure --prefix="$PREFIX/" | |
make | |
make install | |
# compile dvisvgm | |
cd ../../dvisvgm | |
./autogen.sh | |
CPPFLAGS="-I$PREFIX/include/" LDFLAGS="-L$PREFIX/lib/" ./configure --prefix="$PREFIX/" | |
make | |
make check | |
make install |
I got this :(¨
+ IFS='
'
+ PREFIX=/usr/local/dvisvgm
++ kpsewhich -var SELFAUTOLOC
kpsewhich: option `-var' is ambiguous
+ TEX=
-var-value
It worked!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found that this wouldn't work unless I put the binary at
$(kpsewhich -var-value SELFAUTOLOC)
and then made a symbolic link to it.