mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
Update mhz to latest version to include new calibration features. Signed-off-by: Robert Marko <robert.marko@sartura.hr>
34 lines
794 B
Makefile
34 lines
794 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mhz
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/wtarreau/mhz.git
|
|
PKG_SOURCE_DATE:=2025-07-26
|
|
PKG_SOURCE_VERSION:=512f63021f6f0cec8e5e13be744dba0b4704cfae
|
|
PKG_MIRROR_HASH:=1827af2ed7a3c6f4499f6aacafcb668c3efcb1274135dfa50fe5ffa3eca4e140
|
|
|
|
PKG_MAINTAINER:=Robert Marko <robimarko@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mhz
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=CPU frequency measurement utility
|
|
endef
|
|
|
|
define Package/mhz/description
|
|
Tool to mathematically calculate the current CPU frequency.
|
|
endef
|
|
|
|
define Package/mhz/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mhz $(1)/usr/sbin/mhz
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mhz))
|