packages/libs/neon/Makefile
nico 10c4d3ad38 [packages] neon: rename from neon to libneon, add libtool fixes, use expat instead of libxml2, cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9245 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-10-10 15:13:45 +00:00

78 lines
1.9 KiB
Makefile

#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=neon
PKG_VERSION:=0.26.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.webdav.org/neon/
PKG_MD5SUM:=6e52cd9c03e372026d6eccbfb80f09ef
include $(INCLUDE_DIR)/package.mk
define Package/libneon
SECTION:=libs
CATEGORY:=Libraries
TITLE:=HTTP and WebDAV client library
URL:=http://www.webdav.org/neon/
DEPENDS:=+libopenssl +libexpat
endef
CONFIGURE_ARGS += \
--enable-shared \
--enable-static \
--with-expat \
--with-ssl="openssl" \
--without-egd \
--without-socks \
CONFIGURE_VARS += \
LDFLAGS="$$$$LDFLAGS -lcrypto -lssl"
define Build/Configure
$(call Build/Configure/Default)
$(call libtool_disable_rpath)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) all
$(call libtool_fixup_libdir,$(PKG_INSTALL_DIR))
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
endef
define Build/InstallDev
mkdir -p $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/neon-config $(1)/usr/bin/
mkdir -p $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/neon $(1)/usr/include/
mkdir -p $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libneon.{a,so*} $(1)/usr/lib/
mkdir -p $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/neon.pc $(1)/usr/lib/pkgconfig/
$(SED) 's,-I$$$${includedir}/,-I$(1)/usr/include/,g' $(1)/usr/bin/neon-config
$(SED) 's,-L$$$${libdir},,g' $(1)/usr/bin/neon-config
endef
define Build/UninstallDev
rm -rf $(STAGING_DIR)/usr/bin/neon-config \
$(STAGING_DIR)/usr/include/neon \
$(STAGING_DIR)/usr/lib/libneon.{a,so*} \
$(STAGING_DIR)/usr/lib/pkgconfig/neon.pc
endef
define Package/libneon/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libneon.so.* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libneon))