mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 07:28:27 +02:00
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libnxml
|
|
PKG_VERSION:=0.18.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.autistici.org/bakunin/$(PKG_NAME)/
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libnxml
|
|
MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Libnxml
|
|
URL:=http://www.autistici.org/bakunin/libnxml/doc/
|
|
DEPENDS:=+libcurl
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --prefix=/usr
|
|
TARGET_LDFLAGS += -Wl,-rpath-link -Wl,$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/libnxml/description
|
|
nXML is a C library for parsing, writing and creating XML 1.0 and 1.1 files or streams.
|
|
endef
|
|
|
|
define Build/Compile
|
|
rm -rf $(PKG_INSTALL_DIR)
|
|
$(MAKE_VARS) $(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(MAKE_FLAGS) \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
mkdir -p $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
mkdir -p $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libnxml/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnxml.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libnxml))
|