From 0e4cf8941dc10c2fdd75c14deb4dfffae1f77228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=B6glund?= Date: Tue, 12 Apr 2016 15:45:05 +0200 Subject: [PATCH] Add iop package --- iop/Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 iop/Makefile diff --git a/iop/Makefile b/iop/Makefile new file mode 100644 index 000000000..175ac1156 --- /dev/null +++ b/iop/Makefile @@ -0,0 +1,34 @@ +# +# Copyright (C) 2006-2011 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:=iop +PKG_VERSION:=1.0 +PKG_RELEASE:=0 + +include $(INCLUDE_DIR)/package.mk + +define Package/iup + SECTION:=net + CATEGORY:=Network + TITLE:=iop utilities +endef + +define Package/iup/description + This package contains Intenos Iop utilities +endef + +define Build/Compile + true +endef + +define Package/iup/install + true +endef + +$(eval $(call BuildPackage,iop))