This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119377 additions and 73694 deletions

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))