2bdc3d6113
[Thomas: - Introduce a BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS Config.in symbol to be able to easily propagate the architecture dependencies. - Wrap the help text, add some more details as suggested by Arnout. - Propagate the architecture dependencies to the comment, as suggested by Arnout. - Remove the dependency of google-breakpad on host-google-breakpad, since it's not needed. - Add <pkg>_TARGET = NO, because google-breakpad only installs a static library, so installation to staging is sufficient. - Reorder autotools-package/host-autotools-package invocations, as suggested by Arnout.] Signed-off-by: Pascal Huerst <pascal.huerst@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
632 B
Makefile
19 lines
632 B
Makefile
################################################################################
|
|
#
|
|
# google-breakpad
|
|
#
|
|
################################################################################
|
|
|
|
GOOGLE_BREAKPAD_VERSION = 1320
|
|
GOOGLE_BREAKPAD_SITE = http://google-breakpad.googlecode.com/svn/trunk
|
|
GOOGLE_BREAKPAD_SITE_METHOD = svn
|
|
GOOGLE_BREAKPAD_CONF_OPT = --disable-processor --disable-tools
|
|
# Only a static library is installed
|
|
GOOGLE_BREAKPAD_INSTALL_TARGET = NO
|
|
GOOGLE_BREAKPAD_INSTALL_STAGING = YES
|
|
GOOGLE_BREAKPAD_LICENSE = BSD-3c
|
|
GOOGLE_BREAKPAD_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|