mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 14:06:15 +00:00
b3c1c57a35
When using zst instead of xz, the hash changes. This commit fixes the hash for packages and tools in core. Signed-off-by: Paul Spooren <mail@aparcar.org>
35 lines
912 B
Makefile
35 lines
912 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ravpower-mcu
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/blocktrron/ravpower-mcu.git
|
|
PKG_MIRROR_HASH:=683c04c85c6f973d3e9a0c9d0f77e2dde4e89ff0d40a28ad6682bc2550022b3c
|
|
PKG_SOURCE_DATE:=2020-06-19
|
|
PKG_SOURCE_VERSION:=1665d9e9212dcd118629a74fbe658841f81036f7
|
|
PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ravpower-mcu
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Utility to control the RAVPower RP-WD009 PMIC
|
|
URL:=https://github.com/blocktrron/ravpower-mcu/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
CFLAGS="$(TARGET_CFLAGS) -Wall"
|
|
endef
|
|
|
|
define Package/ravpower-mcu/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/out/ravpower-mcu $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ravpower-mcu))
|