17 lines
705 B
Makefile
17 lines
705 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# systemd-bootchart
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
SYSTEMD_BOOTCHART_VERSION = 230
|
||
|
SYSTEMD_BOOTCHART_SOURCE = systemd-bootchart-$(SYSTEMD_BOOTCHART_VERSION).tar.xz
|
||
|
# Do not use the github helper here, the generated tarball is *NOT* the same
|
||
|
# as the one uploaded by upstream for the release.
|
||
|
SYSTEMD_BOOTCHART_SITE = https://github.com/systemd/systemd-bootchart/releases/download/v$(SYSTEMD_BOOTCHART_VERSION)
|
||
|
SYSTEMD_BOOTCHART_LICENSE = LGPLv2.1+
|
||
|
SYSTEMD_BOOTCHART_LICENSE_FILES = LICENSE.LGPL2.1
|
||
|
SYSTEMD_BOOTCHART_DEPENDENCIES = systemd
|
||
|
|
||
|
$(eval $(autotools-package))
|