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 41 lines (32 sloc) 923 Bytes
#!/usr/bin/env beesh
# BEE_VERSION jq-1.7-1
# SRCURL[0]="https://github.com/stedolan/jq/releases/download/jq-${PKGVERSION}/jq-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/4662fd45f0b5622382fc85c1249739d5/jq-1.7.tar.gz"
# build_in_sourcedir
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
CFLAGS="-O2 -fPIC" \
CFLAGS='-Wno-implicit-fallthrough' \
bee_configure --disable-shared
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
(
cd ${D}
rm -rvf usr/share/doc
# Note: If the Oniguruma library is not found during build time of this
# package, a vendored versions gets installed. We don't want that.
rm -f usr/include/oniguruma.h usr/include/oniggnu.h
rm -f usr/lib/libonig.*
rm -f usr/lib/pkgconfig/oniguruma.pc
rm -f usr/bin/onig-config
)
}