Skip to content
Permalink
update-openssh
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
2 contributors

Users who have contributed to this file

@wwwutz @david
executable file 47 lines (37 sloc) 980 Bytes
#!/usr/bin/env beesh
# BEE_VERSION plplot-5.15.0-0
SRCURL[0]="https://sourceforge.net/projects/plplot/files/plplot/${PKGVERSION}%20Source/plplot-${PKGVERSION}.tar.gz/download plplot-${PKGVERSION}.tar.gz"
# PATCHURL+=()
# 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
}
#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
}
## by default this may be 'make install DESTDIR="${D}"'