diff --git a/jq.be0 b/jq.be0 index ef669077d..5225da609 100755 --- a/jq.be0 +++ b/jq.be0 @@ -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" @@ -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 + ) } diff --git a/libonig.be0 b/libonig.be0 new file mode 100755 index 000000000..760e3e895 --- /dev/null +++ b/libonig.be0 @@ -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 +#}