Skip to content
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 49 lines (39 sloc) 1.21 KB
#!/usr/bin/env beesh
# BEE_VERSION plplot-5.15.0-1
#SRCURL[0]="https://sourceforge.net/projects/plplot/files/plplot/${PKGVERSION}%20Source/plplot-${PKGVERSION}.tar.gz/download plplot-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/36aec5bfadc2e207cf8ee39f573c9303/plplot-5.15.0.tar.gz"
# fix error: "aggregate ‘QPainterPath path’ has incomplete type"
PATCHURL+=("https://beehive.molgen.mpg.de/eb8059e719f06f540cc251d9b3ff74e5/plplot-5.15.0-fix-include.patch")
# EXCLUDE+=()
# build_in_sourcedir
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
# control which languages we support to keep dependency impact low
bee_configure \
-DBUILD_SHARED_LIBS=ON \
-DDEFAULT_NO_BINDINGS=ON \
-DENABLE_cxx=ON \
-DENABLE_qt=ON \
-DENABLE_tcl=ON \
-DENABLE_tk=ON \
-DENABLE_wxwidgets=ON \
-DBUILD_TEST=ON \
-DCMAKE_CXX_FLAGS='-Wno-deprecated-declarations'
}
#mee_build() {
# bee_build
#}
#mee_build_post() {
# ctest
# 100% tests passed, 0 tests failed out of 19
#}
mee_install() {
bee_install
rm -rf ${D}/usr/share/plplot${PKGVERSION}/examples
rm -rf ${D}/usr/share/doc/plplot
}