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

$(STAGING_DIR)/usr/bin.


git-svn-id: svn://svn.openwrt.org/openwrt/packages@12902 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars 2008-10-08 15:33:00 +00:00
parent 122b72076f
commit 2e4aa72968

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2007 OpenWrt.org # Copyright (C) 2007-2008 OpenWrt.org
# #
# This is free software, licensed under the GNU General Public License v2. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -18,6 +18,8 @@ PKG_MD5SUM:=dcd50ddb2544faeae77f194804559404
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
PKG_INSTALL=1
define Package/taglib define Package/taglib
SECTION:=libs SECTION:=libs
CATEGORY:=Libraries CATEGORY:=Libraries
@ -39,19 +41,23 @@ CONFIGURE_VARS += \
LDFLAGS="$$$$LDFLAGS" \ LDFLAGS="$$$$LDFLAGS" \
LIBS="-nodefaultlibs -lz -luClibc++" \ LIBS="-nodefaultlibs -lz -luClibc++" \
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Build/InstallDev define Build/InstallDev
mkdir -p $(1)/usr/bin $(INSTALL_DIR) $(2)/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/taglib-config $(1)/usr/bin/ $(INSTALL_BIN) \
mkdir -p $(1)/usr/lib $(PKG_INSTALL_DIR)/usr/bin/taglib-config \
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtag.{a,so*} $(1)/usr/lib/ $(2)/bin/
mkdir -p $(1)/usr/include/taglib $(SED) \
$(CP) $(PKG_INSTALL_DIR)/usr/include/taglib/* $(1)/usr/include/taglib/ 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
$(2)/bin/taglib-config
$(INSTALL_DIR) $(1)/usr/lib
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/libtag.{la,so*} \
$(1)/usr/lib/
$(INSTALL_DIR) $(1)/usr/include/taglib
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/taglib/* \
$(1)/usr/include/taglib/
endef endef
define Package/taglib/install define Package/taglib/install