# # Copyright (C) 2019 Santiago Piccinini # # This is free software, licensed under the GNU General Public License v3. # include $(TOPDIR)/rules.mk PKG_NAME:=librerouter-hw PKG_RELEASE:=1 include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) SECTION:=utils CATEGORY:=Utilities TITLE:=Librerouter hardware tools endef define Package/$(PKG_NAME)/description Tools for the librerouter HW support. endef define Build/Compile endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/ $(CP) ./files/* $(1)/ endef $(eval $(call BuildPackage,$(PKG_NAME)))