view src/pkg_config.mk @ 131:ed98f6b98e35

use $(1) instead of $(2) to address to temporary build dir
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 08 Nov 2008 19:06:50 +0100
parents 30329b64f5e3
children 59aca9c070c9
line wrap: on
line source

# pkg-config
# http://pkg-config.freedesktop.org/

PKG            := pkg_config
$(PKG)_VERSION := 0.23
$(PKG)_SUBDIR  := pkg-config-$($(PKG)_VERSION)
$(PKG)_FILE    := pkg-config-$($(PKG)_VERSION).tar.gz
$(PKG)_URL     := http://pkgconfig.freedesktop.org/releases/$($(PKG)_FILE)
$(PKG)_DEPS    :=

define $(PKG)_UPDATE
    wget -q -O- 'http://pkgconfig.freedesktop.org/' | \
    $(SED) -n 's,.*current release of pkg-config is version \([0-9][^ ]*\) and.*,\1,p' | \
    head -1
endef

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        --prefix='$(PREFIX)/$(TARGET)'
    $(MAKE) -C '$(1)' -j '$(JOBS)' install
    install -d '$(PREFIX)/$(TARGET)'
    rm -f '$(PREFIX)/bin/$(TARGET)-pkg-config'
    ln -s '../$(TARGET)/bin/pkg-config' '$(PREFIX)/bin/$(TARGET)-pkg-config'
endef