wok-next annotate pkg-config/receipt @ rev 21264

updated firefox-official (69.0 -> 71.0)
author Hans-G?nter Theisgen
date Fri Dec 06 15:46:28 2019 +0100 (2019-12-06)
parents 10df65db91ad
children
rev   line source
al@19745 1 # SliTaz package receipt v2.
pankso@28 2
pankso@28 3 PACKAGE="pkg-config"
al@20436 4 VERSION="0.29.2"
pankso@200 5 CATEGORY="development"
al@19745 6 SHORT_DESC="Free desktop packages manager"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@19570 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/pkg-config/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/pkg-config.html"
pankso@28 11
al@19570 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19570 13 WGET_URL="https://pkg-config.freedesktop.org/releases/$TARBALL"
al@19570 14
al@19570 15 BUILD_DEPENDS="gcc libtool perl"
pankso@15983 16
al@20436 17 compile_rules() {
al@21020 18 ./configure \
al@21020 19 --with-internal-glib \
al@21020 20 --disable-host-tool \
al@21020 21 $CONFIGURE_ARGS &&
al@20604 22 fix libtool &&
al@20604 23 make &&
al@20604 24 make install || return 1
al@19570 25
al@19570 26 cd $install/usr/bin
al@19570 27 mv pkg-config ${TOOLPREFIX}pkg-config
al@19570 28 ln -s ${TOOLPREFIX}pkg-config pkg-config
pankso@28 29 }
pankso@28 30
al@20436 31 genpkg_rules() {
al@19745 32 copy @std @dev
al@19745 33 DEPENDS="glibc-base"
al@20436 34 TAGS="LFS"
pankso@28 35 }