You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
679 B
24 lines
679 B
################################################################################
|
|
#
|
|
# rpcbind
|
|
#
|
|
################################################################################
|
|
|
|
RPCBIND_VERSION = 1.2.6
|
|
RPCBIND_DIR = rpcbind-$(RPCBIND_VERSION)
|
|
RPCBIND_SOURCE = rpcbind-$(RPCBIND_VERSION).tar.bz2
|
|
RPCBIND_SITE = https://sourceforge.net/projects/rpcbind/files/rpcbind/$(RPCBIND_VERSION)
|
|
|
|
RPCBIND_DEPENDENCIES = libtirpc
|
|
|
|
RPCBIND_CONF_OPTS = \
|
|
--with-rpcuser=root \
|
|
--with-systemdsystemunitdir=no
|
|
|
|
define RPCBIND_TARGET_CLEANUP
|
|
$(TARGET_RM) $(TARGET_bindir)/rpcinfo
|
|
endef
|
|
RPCBIND_TARGET_FINALIZE_HOOKS += RPCBIND_TARGET_CLEANUP
|
|
|
|
rpcbind: | $(TARGET_DIR)
|
|
$(call autotools-package)
|
|
|