summaryrefslogtreecommitdiffstats
path: root/src/pkg_config.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2008-11-08 09:02:31 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2008-11-08 09:02:31 (GMT)
commit52fb410207bc2aa2b2e1faea3c1001612347ee1c (patch)
tree21393bde8f6a3ebcc939659d6f4c2cea3d8f8a98 /src/pkg_config.mk
parente696a54e5ed4ea913796af979f93870fb7dcdf67 (diff)
downloadmxe-52fb410207bc2aa2b2e1faea3c1001612347ee1c.zip
mxe-52fb410207bc2aa2b2e1faea3c1001612347ee1c.tar.gz
mxe-52fb410207bc2aa2b2e1faea3c1001612347ee1c.tar.bz2
translated package: pkg_config
Diffstat (limited to 'src/pkg_config.mk')
-rw-r--r--src/pkg_config.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pkg_config.mk b/src/pkg_config.mk
new file mode 100644
index 0000000..d63716d
--- /dev/null
+++ b/src/pkg_config.mk
@@ -0,0 +1,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 '$(2)' && ./configure \
+ --prefix='$(PREFIX)/$(TARGET)'
+ $(MAKE) -C '$(2)' -j '$(JOBS)' install
+ mkdir -p '$(PREFIX)/bin'
+ rm -f '$(PREFIX)/bin/$(TARGET)-pkg-config'
+ ln -s '../$(TARGET)/bin/pkg-config' '$(PREFIX)/bin/$(TARGET)-pkg-config'
+endef