1c8369ce3f
As discussed, users should use a rootfs overlay or a post-build script instead of a custom skeleton to override files installed by Buildroot, so there is no point in having conditions when installing init scripts or configuration files. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
746 B
Makefile
25 lines
746 B
Makefile
################################################################################
|
|
#
|
|
# rpcbind
|
|
#
|
|
################################################################################
|
|
|
|
RPCBIND_VERSION = 0.2.1
|
|
RPCBIND_SITE = http://downloads.sourceforge.net/project/rpcbind/rpcbind/$(RPCBIND_VERSION)
|
|
RPCBIND_SOURCE = rpcbind-$(RPCBIND_VERSION).tar.bz2
|
|
RPCBIND_LICENSE = BSD-3c
|
|
RPCBIND_LICENSE_FILES = COPYING
|
|
RPCBIND_AUTORECONF = YES
|
|
|
|
RPCBIND_CONF_ENV += \
|
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/tirpc/"
|
|
RPCBIND_DEPENDENCIES += libtirpc
|
|
RPCBIND_CONF_OPTS += --with-rpcuser=root
|
|
|
|
define RPCBIND_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/rpcbind/S30rpcbind \
|
|
$(TARGET_DIR)/etc/init.d/S30rpcbind
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|