gitorious archive became available, so I could import the project history from there into the new repo on github. Rebasing the changes made since 2014 on top of the original git tree obviously caused the commit hashes to differ. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
#
|
|
# Copyright (C) 2007-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tracertools
|
|
PKG_VERSION:=20160118
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
|
|
PKG_LICENSE:=GPL-3.0
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/dangowrt/tracertools.git
|
|
PKG_SOURCE_VERSION:=253e73fd379714239b51d5b0fd719b7c2d65f379
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/tracertools
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Tracer MPPT monitoring and control tools
|
|
endef
|
|
|
|
define Package/tracertools/description
|
|
Tools for the Tracer MPPT solar charge controller.
|
|
endef
|
|
|
|
define Package/tracertools/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tracerstat $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tracertools))
|