|
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
PKG_NAME:=libxslt |
|
|
|
PKG_VERSION:=1.1.32 |
|
|
|
PKG_RELEASE:=1 |
|
|
|
PKG_RELEASE:=2 |
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
|
|
|
PKG_SOURCE_URL:= \
|
|
|
@ -54,7 +54,7 @@ endef |
|
|
|
define Package/xsltproc |
|
|
|
SECTION:=utils |
|
|
|
CATEGORY:=Utilities |
|
|
|
DEPENDS:=+libxml2 +libxslt +libexslt |
|
|
|
DEPENDS:=+libxslt +PACKAGE_xsltproc:libexslt |
|
|
|
TITLE:=Gnome XSLT xsltproc Utility |
|
|
|
URL:=http://xmlsoft.org/XSLT/ |
|
|
|
endef |
|
|
@ -73,8 +73,6 @@ CONFIGURE_ARGS+= \ |
|
|
|
--without-mem-debug \
|
|
|
|
--without-debugger \
|
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC) |
|
|
|
|
|
|
|
define Build/InstallDev/Xslt |
|
|
|
$(INSTALL_DIR) $(1)/usr/bin $(2)/bin $(1)/usr/include/libxslt \
|
|
|
|
$(1)/usr/include/libexslt $(1)/usr/lib \
|
|
|
@ -130,14 +128,14 @@ endef |
|
|
|
define Package/libxslt/install |
|
|
|
$(INSTALL_DIR) $(1)/usr/lib |
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libxslt.so.* \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libxslt.so* \
|
|
|
|
$(1)/usr/lib/ |
|
|
|
endef |
|
|
|
|
|
|
|
define Package/libexslt/install |
|
|
|
$(INSTALL_DIR) $(1)/usr/lib |
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libexslt.so.* \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/libexslt.so* \
|
|
|
|
$(1)/usr/lib/ |
|
|
|
endef |
|
|
|
|
|
|
|