Mercurial > hg > mxe-octave-anirudha
view src/pkg_config.mk @ 222:00d6dd5f8109
work-around for a braindead line 'MAKE = make' in the Makefile of package libgeotiff
author | Volker Grabsch <vog@notjusthosting.com> |
---|---|
date | Thu, 05 Feb 2009 00:47:17 +0100 |
parents | 59aca9c070c9 |
children | 5bf9071e67b6 |
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)/bin' rm -f '$(PREFIX)/bin/$(TARGET)-pkg-config' ln -s '../$(TARGET)/bin/pkg-config' '$(PREFIX)/bin/$(TARGET)-pkg-config' endef