mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 00:29:41 +02:00
fa7fcec9cf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9162 3c298f89-4303-0410-b956-a3cf2f4a3e73
36 lines
839 B
Makefile
36 lines
839 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pkg-config
|
|
PKG_VERSION:=0.22
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://pkgconfig.freedesktop.org/releases/
|
|
PKG_MD5SUM:=fd5c547e9d66ba49bc735ccb8c791f2a
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Install
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
install
|
|
mv $(STAGING_DIR_HOST)/bin/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config.real
|
|
$(INSTALL_BIN) ./files/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config
|
|
endef
|
|
|
|
define Build/Clean
|
|
$(MAKE) -C $(PKG_BUILD_DIR) uninstall
|
|
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
|
$(call Build/Clean/Default)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|