Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # Copyright (C) 2014 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-www-curl
  9. PKG_VERSION:=4.17
  10. PKG_RELEASE:=4
  11. PKG_SOURCE_URL:=http://www.cpan.org/authors/id/S/SZ/SZBALINT/
  12. PKG_SOURCE:=WWW-Curl-$(PKG_VERSION).tar.gz
  13. PKG_MD5SUM:=997ac81cd6b03b30b36f7cd930474845
  14. PKG_LICENSE:=GPL-1.0+ Artistic-1.0-Perl
  15. PKG_LICENSE_FILES:=LICENSE
  16. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  17. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/WWW-Curl-$(PKG_VERSION)
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../perl/perlmod.mk
  20. define Package/perl-www-curl
  21. SUBMENU:=Perl
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Perl bindings to libcurl
  25. URL:=http://search.cpan.org/dist/WWW-Curl/
  26. DEPENDS:=perl +libcurl +perlbase-essential +perlbase-xsloader
  27. endef
  28. define Build/Configure
  29. $(call perlmod/Configure,$(STAGING_DIR)/usr/include,)
  30. endef
  31. define Build/Compile
  32. $(call perlmod/Compile,,)
  33. endef
  34. define Package/perl-www-curl/install
  35. $(call perlmod/Install,$(1),WWW/Curl WWW/Curl.pm auto/WWW/Curl)
  36. endef
  37. $(eval $(call BuildPackage,perl-www-curl))