mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-01-28 01:47:19 +01:00
30 lines
476 B
Makefile
30 lines
476 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=catv
|
|
PKG_RELEASE:=1
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/catv
|
|
CATEGORY:=Utilities
|
|
TITLE:=CATV
|
|
endef
|
|
|
|
define Package/catv/description
|
|
CATV configuration utility
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./files/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/catv/install
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,catv))
|