1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #
- # Copyright (C) 2006-2018 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:=libtirpc
- PKG_VERSION:=1.0.2
- PKG_RELEASE:=1
- PKG_SOURCE_URL:=@SF/libtirpc
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
- PKG_HASH:=723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5
- PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
- PKG_LICENSE:=BSD-3-Clause
- PKG_FIXUP:=autoreconf
- PKG_INSTALL:=1
- include $(INCLUDE_DIR)/package.mk
- define Package/libtirpc
- SECTION:=libs
- CATEGORY:=Libraries
- TITLE:=Library TI RPC for RPC bindings
- URL:=http://libtirpc.sourceforge.net/
- DEPENDS:=+libpthread
- endef
- CONFIGURE_ARGS += --disable-gssapi
- # Info from Buildroot Makefile
- # getrpcby{number,name} are only provided if 'GQ' is defined
- TARGET_CFLAGS += -DGQ
- #CONFIGURE_VARS += \
- # GSSGLUE_LIBS="-lkrb5 -lk5crypto -l:libcom_err.so.3 -lkeyutils -lresolv -gssapi_krb5" \
- # GSSGLUE_CFLAGS=-I$(STAGING_DIR)/usr/include/krb5/
- #EXTRA_LDFLAGS := -lgssapi_krb5
- define Package/libtirpc/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtirpc.so* $(1)/usr/lib
- endef
- define Build/InstallDev
- $(INSTALL_DIR) $(1)/usr/include
- $(INSTALL_DIR) $(1)/usr/lib
- $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtirpc.{a,so*} $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include
- $(SED) 's,/usr,${STAGING_DIR}/usr,g' $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtirpc.pc
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtirpc.pc $(1)/usr/lib/pkgconfig/libtirpc.pc
- endef
- $(eval $(call BuildPackage,libtirpc))
|