# Copyright 2019 University of Warsaw

include $(TOPDIR)/rules.mk

PKG_NAME:=app-customization-modify
PKG_VERSION:=1.0.0
PKG_RELEASE:=1
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=License

include $(INCLUDE_DIR)/package.mk

define Package/app-customization-modify
  SECTION:=heni
  CATEGORY:=HENI
  TITLE:=App customization: modify ihex on-site
  DEPENDS:=+
endef

define Package/app-customization-modify/description
 Part of the App Customization tool: this is a program that modifies ihex file according to modifications file. 
endef

define Build/Compile
endef

define Build/Configure
endef

define Package/app-customization-modify/install
	$(INSTALL_DIR) $(1)/usr
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) ./files/usr/bin/app-customization-modify $(1)/usr/bin/app-customization-modify
endef

$(eval $(call BuildPackage,app-customization-modify))
