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/geany-plugins.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
54 lines (44 sloc)
1.25 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 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 | |
} |