wok-next view pkg-config/receipt @ rev 21427

updated qt4 (4.8.6 -> 4.8.7)
author Hans-G?nter Theisgen
date Tue May 05 08:11:24 2020 +0100 (2020-05-05)
parents 10df65db91ad
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="pkg-config"
4 VERSION="0.29.2"
5 CATEGORY="development"
6 SHORT_DESC="Free desktop packages manager"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/pkg-config/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/pkg-config.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://pkg-config.freedesktop.org/releases/$TARBALL"
15 BUILD_DEPENDS="gcc libtool perl"
17 compile_rules() {
18 ./configure \
19 --with-internal-glib \
20 --disable-host-tool \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install || return 1
26 cd $install/usr/bin
27 mv pkg-config ${TOOLPREFIX}pkg-config
28 ln -s ${TOOLPREFIX}pkg-config pkg-config
29 }
31 genpkg_rules() {
32 copy @std @dev
33 DEPENDS="glibc-base"
34 TAGS="LFS"
35 }