package/mbpfan: new package

Adding mbpfan, a fan control daemon for MacBook laptops.

Signed-off-by: Christian Stewart <christian@paral.in>
[Peter: add hash file, drop Debian init script, drop systemd symlinks, add
 DEVELOPERS entry]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Christian Stewart 2020-05-17 20:48:58 -07:00 committed by Peter Korsgaard
parent dc657c8041
commit 1640b0c1f9
5 changed files with 43 additions and 0 deletions

View File

@ -553,6 +553,7 @@ F: package/docker-engine/
F: package/docker-proxy/
F: package/fuse-overlayfs/
F: package/go/
F: package/mbpfan/
F: package/mosh/
F: package/pkg-golang.mk
F: package/rtl8821au/

View File

@ -490,6 +490,7 @@ endmenu
source "package/luksmeta/Config.in"
source "package/lvm2/Config.in"
source "package/mali-t76x/Config.in"
source "package/mbpfan/Config.in"
source "package/mdadm/Config.in"
source "package/mdevd/Config.in"
source "package/memtest86/Config.in"

9
package/mbpfan/Config.in Normal file
View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_MBPFAN
bool "mbpfan"
depends on BR2_USE_MMU
help
Mbpfan is a daemon for MacBook laptops which monitors the
CPU temperature with the coretemp module, and sets the fan
speeds with the applesmc module.
https://github.com/linux-on-mac/mbpfan

View File

@ -0,0 +1,3 @@
# Locally computed:
sha256 52a3a79d99f775fe90917a0958e527ea14ff5b83d010164bd91f7cc3ce046b6a mbpfan-2.2.1.tar.gz
sha256 589ed823e9a84c56feb95ac58e7cf384626b9cbf4fda2a907bc36e103de1bad2 COPYING

29
package/mbpfan/mbpfan.mk Normal file
View File

@ -0,0 +1,29 @@
################################################################################
#
# mbpfan
#
################################################################################
MBPFAN_VERSION = 2.2.1
MBPFAN_SITE = $(call github,linux-on-mac,mbpfan,v$(MBPFAN_VERSION))
MBPFAN_LICENSE = GPL-3.0+
MBPFAN_LICENSE_FILES = COPYING
define MBPFAN_BUILD_CMDS
$(TARGET_MAKE_ENV) CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
$(MAKE) CC="$(TARGET_CC)" -C $(@D)
endef
define MBPFAN_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0644 $(@D)/mbpfan.conf \
$(TARGET_DIR)/etc/mbpfan.conf
$(INSTALL) -m 0755 $(@D)/bin/mbpfan $(TARGET_DIR)/usr/sbin/mbpfan
endef
define MBPFAN_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 $(@D)/mbpfan.service \
$(TARGET_DIR)/usr/lib/systemd/system/mbpfan.service
endef
$(eval $(generic-package))