aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
677 B
Makefile
21 lines
677 B
Makefile
################################################################################
|
|
#
|
|
# protobuf-c
|
|
#
|
|
################################################################################
|
|
|
|
PROTOBUF_C_VERSION = v1.0.0-rc1
|
|
PROTOBUF_C_SITE = $(call github,protobuf-c,protobuf-c,$(PROTOBUF_C_VERSION))
|
|
PROTOBUF_C_DEPENDENCIES = host-protobuf-c
|
|
HOST_PROTOBUF_C_DEPENDENCIES = host-protobuf host-pkgconf
|
|
PROTOBUF_C_MAKE = $(MAKE1)
|
|
PROTOBUF_C_CONF_OPTS = --disable-protoc
|
|
PROTOBUF_C_INSTALL_STAGING = YES
|
|
PROTOBUF_C_LICENSE = BSD-2c
|
|
PROTOBUF_C_LICENSE_FILES = LICENSE
|
|
PROTOBUF_C_AUTORECONF = YES
|
|
HOST_PROTOBUF_C_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|