opt/graphviz/Pkgfile

27 lines
674 B
Plaintext
Raw Normal View History

2021-01-14 12:45:58 +01:00
# Description: Graph visualization software
2021-02-16 14:25:23 +01:00
# URL: https://www.graphviz.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: libtool libgd pango
2021-01-14 12:45:58 +01:00
name=graphviz
2021-02-16 14:25:23 +01:00
version=2.46.1
release=2
2021-01-20 11:53:49 +01:00
source=(https://gitlab.com/graphviz/graphviz/-/archive/$version/$name-$version.tar.bz2)
2021-01-14 12:45:58 +01:00
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'
# don't install into /usr/lib64
sed 's/LIBPOSTFIX="64"/LIBPOSTFIX=""/' -i configure.ac
2021-01-20 11:53:49 +01:00
./autogen.sh
./configure --prefix=/usr $PKGMK_GRAPHVIZ
make -j1
2021-01-14 12:45:58 +01:00
make DESTDIR=$PKG install
2021-01-14 12:45:58 +01:00
rm -r $PKG/usr/share/graphviz/doc
}