af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
819 B
Makefile
25 lines
819 B
Makefile
################################################################################
|
|
#
|
|
# sysstat
|
|
#
|
|
################################################################################
|
|
|
|
SYSSTAT_VERSION = 11.4.3
|
|
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.xz
|
|
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard
|
|
SYSSTAT_CONF_OPTS = --disable-man-group --disable-sensors
|
|
SYSSTAT_DEPENDENCIES = host-gettext
|
|
SYSSTAT_LICENSE = GPL-2.0+
|
|
SYSSTAT_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
SYSSTAT_DEPENDENCIES += gettext
|
|
SYSSTAT_MAKE_OPTS += LFLAGS="$(TARGET_LDFLAGS) -lintl"
|
|
endif
|
|
|
|
# The isag tool is a post processing script that depends on tcl/tk
|
|
# among other things. So we don't install it.
|
|
SYSSTAT_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
|
|
|
|
$(eval $(autotools-package))
|