summaryrefslogtreecommitdiffstats
path: root/src/pkg_config.mk
blob: 19fb22e0710509e6e1f861626925284a65a47426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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)/bin'
    rm -f                               '$(PREFIX)/bin/$(TARGET)-pkg-config'
    ln -s '../$(TARGET)/bin/pkg-config' '$(PREFIX)/bin/$(TARGET)-pkg-config'
endef