Makefile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #
  2. # Copyright (C) 2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=perl-cgi
  9. PKG_VERSION:=4.35
  10. PKG_RELEASE:=2
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/L/LE/LEEJO
  12. PKG_SOURCE:=CGI-$(PKG_VERSION).tar.gz
  13. PKG_MD5SUM:=15e63942c02354426b25f056f2a4467c
  14. PKG_LICENSE:=GPL Artistic-2.0
  15. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>, \
  16. Philip Prindeville <philipp@redfish-solutions.com>
  17. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/CGI-$(PKG_VERSION)
  18. # don't strip comments because that will mangle this module
  19. PKG_LEAVE_COMMENTS:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. include ../perl/perlmod.mk
  22. define Package/perl-cgi
  23. SUBMENU:=Perl
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. TITLE:=Handle Common Gateway Interface requests and responses
  27. URL:=http://search.cpan.org/dist/CGI/
  28. DEPENDS:=perl +perl-html-parser +perlbase-base +perlbase-config +perlbase-encode +perlbase-essential +perlbase-file +perlbase-if +perlbase-utf8
  29. endef
  30. define Build/Configure
  31. $(call perlmod/Configure,,)
  32. endef
  33. define Build/Compile
  34. $(call perlmod/Compile,,)
  35. endef
  36. define Package/perl-cgi/install
  37. $(call perlmod/Install,$(1),CGI CGI.pm auto/CGI)
  38. endef
  39. $(eval $(call BuildPackage,perl-cgi))