mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-07 17:57:22 +01:00
31 lines
591 B
Makefile
31 lines
591 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=port-management
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=1
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/port-management
|
|
CATEGORY:=Utilities
|
|
TITLE:=Port management tool
|
|
endef
|
|
|
|
define Package/port-management/description
|
|
Port configuration utility
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./files/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/port-management/install
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,port-management))
|