Install opencdk-config to $(STAGING_DIR)/host/bin rather then

$(STAGING_DIR)/usr/bin.


git-svn-id: svn://svn.openwrt.org/openwrt/packages@12917 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars 2008-10-08 17:41:57 +00:00
parent 6fc7df325f
commit d1ab1826cc

View File

@ -1,4 +1,4 @@
#
#
# Copyright (C) 2006, 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@ -22,6 +22,8 @@ PKG_MD5SUM:=813d62d7afe7b2c2d8f3df0a6c9d9331
include $(INCLUDE_DIR)/package.mk
PKG_INSTALL=1
define Package/libopencdk
SECTION:=libs
CATEGORY:=Libraries
@ -48,24 +50,31 @@ define Build/Configure
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Build/InstallDev
mkdir -p $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opencdk-config $(1)/usr/bin/
mkdir -p $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/opencdk.h $(1)/usr/include/
mkdir -p $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libopencdk.{a,so*} $(1)/usr/lib/
$(INSTALL_DIR) $(2)/bin
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/opencdk-config \
$(2)/bin/
$(SED) \
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
$(2)/bin/opencdk-config
$(INSTALL_DIR) $(1)/usr/include
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/opencdk.h \
$(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/libopencdk.{la,so*} \
$(1)/usr/lib/
endef
define Package/libopencdk/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libopencdk.so.* $(1)/usr/lib/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/libopencdk.so.* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libopencdk))