Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/graphviz.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
74 lines (59 sloc)
1.39 KB
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
#!/usr/bin/env beesh | |
# BEE_VERSION graphviz-2.42.2-0 | |
# by cmd --version, you will get 2.43.0 | |
SRCURL[0]="https://gitlab.com/graphviz/graphviz/-/archive/stable_release_${PKGVERSION}/${PKGNAME}-stable_release_${PKGVERSION}.tar.gz ${PKGNAME}-${PKGVERSION}.tar.gz" | |
BEE_BUILDTYPE=autotools | |
# PATCHURL+=() | |
# EXCLUDE+=() | |
build_in_sourcedir | |
# sourcesubdir_append src | |
#mee_extract() { | |
# bee_extract "${@}" | |
#} | |
mee_patch() { | |
cd ${S} | |
start_cmd sed -i '/LIBPOSTFIX="64"/s/64//' configure.ac | |
./autogen.sh &> /dev/null | |
} | |
mee_configure() { | |
bee_configure --disable-swig \ | |
--with-webp=no \ | |
--with-poppler=no \ | |
--with-rsvg=no \ | |
--with-visio=no \ | |
--with-gdk=no \ | |
--with-gdk-pixbuf=no \ | |
--with-gtk=no \ | |
--with-gtkgl=no \ | |
--with-gtkglext=no \ | |
--with-gts=no \ | |
--with-ann=no \ | |
--with-glade=no \ | |
--with-qt=no \ | |
--with-smyrna=no \ | |
--with-ortho=no \ | |
--with-digcola=no \ | |
--with-ipsepcola=no \ | |
--disable-sharp \ | |
--disable-go \ | |
--with-ghostscript=no \ | |
--disable-guile \ | |
--disable-lua \ | |
--disable-tcl \ | |
--with-freetype2=no \ | |
--with-fontconfig=no \ | |
--without-x \ | |
--without-glut \ | |
--disable-perl \ | |
--without-libgd | |
} | |
#mee_build() { | |
# bee_build | |
#} | |
#mee_install() { | |
# bee_install | |
#} | |
mee_install_post(){ | |
start_cmd rm -rf ${D}${DATAROOTDIR}/graphviz/doc | |
} | |
## by default this may be 'make install DESTDIR="${D}"' |