Cleanup libxslt makefile.
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12931 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
84d5a4b83c
commit
830865a817
@ -16,9 +16,12 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|||||||
PKG_SOURCE_URL:=http://xmlsoft.org/sources/ \
|
PKG_SOURCE_URL:=http://xmlsoft.org/sources/ \
|
||||||
ftp://fr.rpmfind.net/pub/libxml/
|
ftp://fr.rpmfind.net/pub/libxml/
|
||||||
PKG_MD5SUM:=e83ec5d27fc4c10c6f612879bea9a153
|
PKG_MD5SUM:=e83ec5d27fc4c10c6f612879bea9a153
|
||||||
|
PKG_FIXUP:=libtool
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
PKG_INSTALL=1
|
||||||
|
|
||||||
define Package/libxslt
|
define Package/libxslt
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
@ -57,33 +60,46 @@ endef
|
|||||||
|
|
||||||
TARGET_CFLAGS += $(FPIC)
|
TARGET_CFLAGS += $(FPIC)
|
||||||
|
|
||||||
define Build/Compile
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
||||||
all install
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/bin $(1)/usr/include $(1)/usr/lib $(1)/usr/lib/pkgconfig
|
$(INSTALL_DIR) $(2)/bin $(1)/usr/include/libxslt $(1)/usr/lib \
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/xslt-config $(1)/usr/bin/
|
$(1)/usr/lib/pkgconfig $(2)/share/aclocal
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/xsltproc $(1)/usr/bin/
|
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/libxslt $(1)/usr/include/
|
$(INSTALL_BIN) \
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libxslt.{a,so*} $(1)/usr/lib/
|
$(PKG_INSTALL_DIR)/usr/bin/xslt-config \
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libxslt.pc $(1)/usr/lib/pkgconfig/
|
$(2)/bin/
|
||||||
$(SED) 's,-I$$$${includedir},,g' $(1)/usr/bin/xslt-config
|
$(SED) \
|
||||||
$(SED) 's,-L$$$${libdir},,g' $(1)/usr/bin/xslt-config
|
's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
|
||||||
$(SED) 's,-I$(STAGING_DIR)/usr/include,,g' $(1)/usr/bin/xslt-config
|
$(2)/bin/xslt-config
|
||||||
$(SED) 's,-L$(STAGING_DIR)/usr/lib,,g' $(1)/usr/bin/xslt-config
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/include/libxslt/* \
|
||||||
|
$(1)/usr/include/libxslt/
|
||||||
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/libxslt.{la,so*} \
|
||||||
|
$(1)/usr/lib/
|
||||||
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libxslt.pc \
|
||||||
|
$(1)/usr/lib/pkgconfig/
|
||||||
|
|
||||||
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/share/aclocal/* \
|
||||||
|
$(2)/share/aclocal
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libxslt/install
|
define Package/libxslt/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libxslt.so.* $(1)/usr/lib/
|
$(INSTALL_DATA) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/libxslt.so.* \
|
||||||
|
$(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/xsltproc/install
|
define Package/xsltproc/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/xsltproc $(1)/usr/bin/
|
$(INSTALL_BIN) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/bin/xsltproc \
|
||||||
|
$(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libxslt))
|
$(eval $(call BuildPackage,libxslt))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user