# Description: Graph visualization software
# URL: https://www.graphviz.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: expat libtool zlib
# Optional: ghostscript gtk libgd librsvg libxrender pango poppler swig tcl

name=graphviz
version=15.0.0
release=1
source=(https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/$version/$name-$version.tar.xz)

build() {
    cd $name-$version

    # build fails if swig is installed but tcl is not
    prt-get isinst swig && ! prt-get isinst tcl && PKGMK_GRAPHVIZ='--disable-swig'

    ./configure --prefix=/usr $PKGMK_GRAPHVIZ
    make
    make DESTDIR=$PKG install

    rm -r $PKG/usr/share/doc
}
