From 387d483b107fc2f40a6642bc622ca25580ccbaf1 Mon Sep 17 00:00:00 2001 From: Edoardo Putti Date: Sat, 4 Aug 2018 15:24:16 +0100 Subject: [PATCH] first commit --- bundle/ansible/Makefile | 22 ++++++++++++++++++++++ bundle/lilik/Makefile | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 bundle/ansible/Makefile create mode 100644 bundle/lilik/Makefile diff --git a/bundle/ansible/Makefile b/bundle/ansible/Makefile new file mode 100644 index 0000000..01d2ad9 --- /dev/null +++ b/bundle/ansible/Makefile @@ -0,0 +1,22 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=ansible +PKG_VERSION:=1.0 +PKG_RELEASE:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/ansible + SECTION:=bundles + CATEGORY:=Bundles + DEPENDS:=+python +python3 + TITLE:=requirements to configure OpenWRT using ansible +endef + +define Package/ansible/description + LILiK's meta-package for ansible requirements +endef + + +# This command is always the last, it uses the definitions and variables we give above in order to get the job done +$(eval $(call BuildPackage,ansible)) diff --git a/bundle/lilik/Makefile b/bundle/lilik/Makefile new file mode 100644 index 0000000..3fee906 --- /dev/null +++ b/bundle/lilik/Makefile @@ -0,0 +1,22 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=lilik +PKG_VERSION:=1.0 +PKG_RELEASE:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/lilik + SECTION:=bundles + CATEGORY:=Bundles + DEPENDS:=+ca-bundle +ca-certificates +dnsmasq-full +nginx-all +openssh-server +openss-clients + TITLE:=LILiK meta-package +endef + +define Package/lilik/description + LILiK Meta-package all our OpenWRT needs +endef + + +# This command is always the last, it uses the definitions and variables we give above in order to get the job done +$(eval $(call BuildPackage,lilik))