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 54 lines (44 sloc) 1.25 KB
#!/usr/bin/env beesh
# BEE_VERSION geany-plugins-1.37-0
SRCURL[0]="https://plugins.geany.org/geany-plugins/geany-plugins-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://beehive.molgen.mpg.de/a2aa6fa4449991b03cb14c710cd46175/geany-plugins-1.37.tar.bz2"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
# scope has issues with spurious signals
# a.k.a signal 'project-before-save' is invalid for instance '0x687020' of type 'GeanyObject'
# markdown depends on very old webkit
# webhelper depends on very old webkit
# devhelp was removed from mariux
# others have no maintainer
mee_configure() {
bee_configure \
--disable-devhelp \
--disable-geanygendoc \
--disable-geanylua \
--disable-markdown \
--disable-webhelper \
--disable-geanyprj \
--disable-projectorganizer \
--disable-geanypy \
--disable-geanyvc \
--disable-geanypg \
--disable-geniuspaste \
--disable-multiterm \
--disable-updatechecker \
--disable-workbench \
--disable-scope
}
mee_build() {
bee_build CFLAGS='-Wno-deprecated-declarations'
}
mee_install() {
bee_install
rm -rf ${D}/usr/share/doc
}