123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=luci-app-ocserv
- PKG_RELEASE:=1
-
- PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/luci-app-ocserv
- SECTION:=luci
- CATEGORY:=LuCI
- SUBMENU:=3. Applications
- TITLE:= OpenConnect VPN server configuration and status module
- DEPENDS:=+luci-lib-json +luci-lib-nixio +luci-mod-admin-full +ocserv
- MAINTAINER:= Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
- endef
-
- define Package/luci-app-ocserv/description
- ocserv web module for LuCi web interface
- endef
-
- define Build/Prepare
- endef
-
- define Build/Configure
- endef
-
- define Build/Compile
- endef
-
-
- define Package/luci-app-ocserv/install
- $(CP) ./files/* $(1)/
- endef
-
- $(eval $(call BuildPackage,luci-app-ocserv))
|