|
#
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libsearpc
|
|
PKG_VERSION:=3.0.8
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)-1
|
|
PKG_LICENSE:=GPL-3.0
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/haiwen/libsearpc.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=12a01268825e9c7e17794c58c367e3b4db912ad9
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_MIRROR_HASH:=8ca4785c4d276afeac212a26a143b22e45b85cf196c1218e4630f6072a33f430
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
include ../../lang/python/python-package.mk
|
|
|
|
define Package/libsearpc
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Seafile RPC Library
|
|
MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
|
|
URL:=http://seafile.com/
|
|
DEPENDS:=+glib2 +jansson +python $(ICONV_DEPENDS)
|
|
endef
|
|
|
|
define Package/libsearpc/description
|
|
Searpc is a simple C language RPC framework based on GObject system.
|
|
Searpc handles the serialization/deserialization part of RPC,
|
|
the transport part is left to users.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --enable-compile-demo=no \
|
|
--disable-server-pkg
|
|
|
|
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib -liconv
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/{bin,include}
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsearpc.so* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/searpc* $(1)/usr/include/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libsearpc.pc $(1)/usr/lib/pkgconfig/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/searpc-codegen.py $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/libsearpc/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsearpc.so* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/pysearpc $(1)$(PYTHON_PKG_DIR)
|
|
find $(1) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libsearpc))
|