123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=libsoup
- PKG_VERSION:=2.54.1
- PKG_RELEASE:=2
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
- PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/2.54
- PKG_MD5SUM:=73b1fb774de16c29b380f87016f9f9dd
- PKG_LICENSE:=GPL-2.0
- PKG_LICENSE_FILES:=COPYING
- PKG_BUILD_DEPENDS:=intltool/host
- PKG_BUILD_PARALLEL:=1
- PKG_FIXUP:=autoreconf
- PKG_INSTALL:=1
- include $(INCLUDE_DIR)/package.mk
- include $(INCLUDE_DIR)/nls.mk
- define Package/libsoup
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=libsoup
- URL:=http://live.gnome.org/LibSoup
- MAINTAINER:=W. Michael Petullo <mike@flyn.org>
- DEPENDS:=+glib2 +libxml2 +libgnutls +libsqlite3 $(ICONV_DEPENDS) $(INTL_DEPENDS)
- endef
- CONFIGURE_ARGS += \
- --enable-ssl \
- --disable-glibtest \
- --without-apache-httpd \
- --without-gnome \
- --without-gssapi \
- --enable-vala=no \
- --disable-more-warnings
- define package/libsoup/decription
- Libsoup is an HTTP library implementation in C
- endef
- define Build/InstallDev
- $(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/libsoup-2.4/libsoup}
- $(CP) \
- $(PKG_INSTALL_DIR)/usr/lib/libsoup-2.4.{so*,la,a} \
- $(1)/usr/lib/
- $(INSTALL_DATA) \
- $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
- $(1)/usr/lib/pkgconfig/
- $(INSTALL_DATA) \
- $(PKG_INSTALL_DIR)/usr/include/libsoup-2.4/libsoup/*.h \
- $(1)/usr/include/libsoup-2.4/libsoup/
- endef
- define Package/libsoup/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) \
- $(PKG_INSTALL_DIR)/usr/lib/libsoup-2.4.so* \
- $(1)/usr/lib/
- endef
- $(eval $(call BuildPackage,libsoup))
|