diff --git a/pkg-config-0.26-0.bee b/pkg-config-0.26-0.bee deleted file mode 100755 index eaf312dfd..000000000 --- a/pkg-config-0.26-0.bee +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/env beesh - -PGRP=( uncategorized ) - -SRCURL[0]="http://pkgconfig.freedesktop.org/releases/pkg-config-${PKGVERSION}.tar.gz" - -PATCHES[0]="" - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure --with-pc-path=/usr/lib/pkgconfig:/usr/share/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig -} - -mee_build() { - bee_build -} - -mee_install() { - bee_install -} - diff --git a/pkg-config.be0 b/pkg-config.be0 new file mode 100755 index 000000000..7659d53e2 --- /dev/null +++ b/pkg-config.be0 @@ -0,0 +1,41 @@ +#!/usr/bin/env beesh + +# BEE_VERSION pkg-config-0.29.2-0 + +# https://www.freedesktop.org/wiki/Software/pkg-config + +# SRCURL[0]="http://pkgconfig.freedesktop.org/releases/pkg-config-${PKGVERSION}.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/f6e931e319531b736fadc017f470e68a/pkg-config-${PKGVERSION}.tar.gz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + --with-internal-glib \ + --disable-host-tool \ + --with-pc-path=/usr/lib/pkgconfig:/usr/share/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#} + +mee_install_post() { + rm -rf ${D}/usr/share/doc +}