Asymptote is a powerful descriptive vector graphics language that provides a natural coordinate-based framework for technical drawing. Labels and equations can be typeset with LaTeX. As well as EPS, PDF, and PNG output, it can produce WebGL 3D HTML rendering and (using dvisvgm) SVG output.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
下载地址(HTTP):https://downloads.sourceforge.net/asymptote/asymptote-3.10.src.tgz
MD5 校验和:b89cc85a4621fa4afedcb5e988c625c7
大小:25 MB
预计所需磁盘空间:335 MB (62 MB installed after overwriting files in $TEXLIVE_PREFIX/texmf-dist/, with all the dependencies which are in BLFS)
预计构建时间:0.8 SBU (using parallelism=4)
ghostscript-10.07.1 and texlive-20250308
cURL-8.21.0, Freeglut-3.8.0, GC-8.2.12, GLEW-2.3.1, GLM-1.0.3 and libtirpc-1.3.7
dvisvgm-3.6 to allow svg output
fftw-3.3.11, gsl-2.8, libsigsegv-2.15, rapidjson to use LSP which can be used with emacs, click, and eigen
ImageMagick-7.1.2-13 to convert output to other formats such as JPEG or to create animated GIFs, PyQt5 (not tested, has a build dependency of Qt5) to use xasy
Editor Notes: https://wiki.linuxfromscratch.org/blfs/wiki/asymptote
Certain 3D PDF scripts may not work when invoked from pdflatex on some zen+ amdgpu APU machines.
Install asymptote by running the following commands:
export TEXARCH=$(uname -m | sed -e 's/i.86/i386/' -e 's/$/-linux/') &&
./configure --prefix=$TEXLIVE_PREFIX \
--bindir=$TEXLIVE_PREFIX/bin/$TEXARCH \
--datarootdir=$TEXLIVE_PREFIX/texmf-dist \
--infodir=$TEXLIVE_PREFIX/texmf-dist/doc/info \
--libdir=$TEXLIVE_PREFIX/texmf-dist \
--mandir=$TEXLIVE_PREFIX/texmf-dist/doc/man \
--disable-lsp \
--enable-gc=system \
--with-latex=$TEXLIVE_PREFIX/texmf-dist/tex/latex \
--with-context=$TEXLIVE_PREFIX/texmf-dist/tex/context/third &&
make
To test the results, issue: make check.
Now, as the root user:
make install
--prefix=, --bindir=, --datarootdir=, and other
“dir”
switches: these switches ensure that the files installed from
source will overwrite any corresponding files previously installed
by install-tl-unx so that the
alternative methods of installing texlive are consistent.
--libdir=$TEXLIVE_PREFIX/texmf-dist:
This parameter ensures that the asymptote directory will similarly overwrite any
files installed by install-tl-unx.
--disable-lsp: The Language
Server Protocol is enabled by default, with several third-party
sources included, but it does not build unless boost and rapidjson
have been installed.
--enable-gc=system: this
ensures that the system version of libgc.so will be used instead of the version
shipped with this package.
--with-latex= --with-context=: These switches
ensure that style files and a tex file will be installed into the
texlive directories instead of
creating a texmf-local directory for
them.