initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_SMARTMONTOOLS
|
||||
bool "smartmontools"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Control and monitor storage systems using S.M.A.R.T.
|
||||
|
||||
http://smartmontools.sourceforge.net/
|
||||
|
||||
comment "smartmontools needs a toolchain w/ C++"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
@@ -0,0 +1,7 @@
|
||||
# From http://sourceforge.net/projects/smartmontools/files/smartmontools/7.2/
|
||||
md5 e8d134c69ae4959a05cb56b31172ffb1 smartmontools-7.2.tar.gz
|
||||
sha1 8d68241096f6ed5b1bbcd8b427fa4a881c1f3e33 smartmontools-7.2.tar.gz
|
||||
|
||||
# Locally computed
|
||||
sha256 5cd98a27e6393168bc6aaea070d9e1cd551b0f898c52f66b2ff2e5d274118cd6 smartmontools-7.2.tar.gz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# smartmontools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SMARTMONTOOLS_VERSION = 7.2
|
||||
SMARTMONTOOLS_SITE = http://downloads.sourceforge.net/project/smartmontools/smartmontools/$(SMARTMONTOOLS_VERSION)
|
||||
SMARTMONTOOLS_LICENSE = GPL-2.0+
|
||||
SMARTMONTOOLS_LICENSE_FILES = COPYING
|
||||
SMARTMONTOOLS_CPE_ID_VENDOR = smartmontools
|
||||
SMARTMONTOOLS_SELINUX_MODULES = smartmon
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAP_NG),y)
|
||||
SMARTMONTOOLS_CONF_OPTS += --with-libcap-ng
|
||||
SMARTMONTOOLS_DEPENDENCIES += libcap-ng
|
||||
else
|
||||
SMARTMONTOOLS_CONF_OPTS += --without-libcap-ng
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
||||
SMARTMONTOOLS_CONF_OPTS += --with-selinux
|
||||
SMARTMONTOOLS_DEPENDENCIES += libselinux
|
||||
else
|
||||
SMARTMONTOOLS_CONF_OPTS += --without-selinux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
||||
SMARTMONTOOLS_CONF_OPTS += --with-libsystemd
|
||||
SMARTMONTOOLS_DEPENDENCIES += systemd
|
||||
else
|
||||
SMARTMONTOOLS_CONF_OPTS += --without-libsystemd
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user