You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
693 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=reverseproxy
  3. PKG_VERSION:=1.0
  4. PKG_RELEASE:=1
  5. include $(INCLUDE_DIR)/package.mk
  6. define Package/reverseproxy
  7. SECTION:=meta
  8. CATEGORY:=LILiK
  9. DEPENDS:=+nginx-all-module
  10. TITLE:=reverse proxy meta package
  11. endef
  12. Package/reverseproxy/conffiles = $(Package/nginx/conffiles)
  13. define Package/reverseproxy/Compile
  14. true
  15. endef
  16. define Package/reverseproxy/install
  17. $(INSTALL_DIR) $(1)/etc/nginx/map.conf.d
  18. endef
  19. define Package/reverseproxy/description
  20. LILiK's reverse proxy meta-package
  21. endef
  22. # This command is always the last, it uses the definitions and variables we give above in order to get the job done
  23. $(eval $(call BuildPackage,reverseproxy))