# Description: A system for managing library compile/link flags # URL: http://pkgconfig.freedesktop.org/wiki/ # Maintainer: CRUX System Team, core-ports at crux dot nu # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: name=pkg-config version=0.29.2 release=1 source=(http://$name.freedesktop.org/releases/$name-$version.tar.gz) build() { cd $name-$version cat > config.cache << EOF glib_cv_stack_grows=no glib_cv_uscore=no ac_cv_func_posix_getgrgid_r=yes ac_cv_func_posix_getpwuid_r=yes EOF ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --with-internal-glib \ --disable-compile-warnings \ --disable-host-tool \ --cache-file=config.cache make make DESTDIR=$PKG install rm -r $PKG/usr/share/doc }