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 + ) }