Skip to content

Fix 3033 #3034

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions jq.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION jq-1.7-0
# BEE_VERSION jq-1.7-1

# SRCURL[0]="https://github.com/stedolan/jq/releases/download/jq-${PKGVERSION}/jq-${PKGVERSION}.tar.gz"

Expand Down Expand Up @@ -28,5 +28,14 @@ mee_configure() {

mee_install() {
bee_install
cd ${D} && rm -rvf usr/share/doc
(
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
)
}
38 changes: 38 additions & 0 deletions libonig.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/usr/bin/env beesh

# BEE_VERSION libonig-6.9.9-0

# more info: https://github.com/kkos/oniguruma

#SRCURL[0]="https://github.com/kkos/oniguruma/archive/refs/tags/v${PKGVERSION}/oniguruma-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/6a3defb3d5e57c2fa4b6f3b4ec6de28b/oniguruma-6.9.9.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

#mee_install_post() {
# exit
#}