Skip to content

Commit

Permalink
Merge pull request #3034 from mariux64/fix-3033
Browse files Browse the repository at this point in the history
Fix 3033
  • Loading branch information
donald authored Dec 14, 2023
2 parents 40ed42a + d04e1da commit 3055c81
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
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
#}

0 comments on commit 3055c81

Please sign in to comment.