diff options
author | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-31 11:05:19 +0100 |
commit | 48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch) | |
tree | 00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/util/graphviz | |
parent | 871b2b573f01c1b3176a0f65458b3d281b41c437 (diff) |
removed idea of repos
Diffstat (limited to 'repo/util/graphviz')
-rw-r--r-- | repo/util/graphviz/graphviz.xibuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/repo/util/graphviz/graphviz.xibuild b/repo/util/graphviz/graphviz.xibuild deleted file mode 100644 index cc87d95..0000000 --- a/repo/util/graphviz/graphviz.xibuild +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -MAKEDEPS="make flex swig m4 libtool libxaw bison lua tcl autoconf automake bash" -DEPS="cairo expat glib libx11 musl pango zlib" - -PKG_VER=2.50.0 -SOURCE=https://gitlab.com/graphviz/graphviz/-/archive/$PKG_VER/graphviz-$PKG_VER.tar.gz -DESC="Graph Visualization Tools" - - -prepare () { - ./autogen.sh NOCONFIG -} - -build () { - CONFIG_SHELL=/bin/bash \ - LIBPOSTFIX=/ \ - LUA=lua \ - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --disable-silent-rules \ - --disable-static \ - --disable-dependency-tracking \ - --enable-ltdl \ - --enable-sharp=no \ - --enable-go=no \ - --enable-guile=no \ - --enable-java=no \ - --enable-lua=yes \ - --enable-ocaml=no \ - --enable-perl=no \ - --enable-php=no \ - --enable-python=yes \ - --enable-r=no \ - --enable-ruby=no \ - --enable-tcl=no \ - --with-x \ - --with-rsvg=yes \ - --with-pangocairo=yes \ - --with-gdk-pixbuf=yes \ - --with-libgd=no \ - --with-ipsepcola=yes - - sed -i -e '/HAVE_SINCOS/d' config.h - - make - -} - -package () { - make -j1 DESTDIR="$PKG_DEST" \ - pkgconfigdir=/usr/lib/pkgconfig \ - install - - mkdir -p "$PKG_DEST"/usr/share/doc - mv "$PKG_DEST"/usr/share/graphviz/doc \ - "$PKG_DEST"/usr/share/doc/graphviz - -} - -postinstall () { - dot -c -} |