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.

48 lines
1.0 KiB

  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:=1
  11. PKG_MD5SUM:=997ac81cd6b03b30b36f7cd930474845
  12. PKG_SOURCE_URL:=http://search.cpan.org/CPAN/authors/id/S/SZ/SZBALINT
  13. PKG_SOURCE:=WWW-Curl-$(PKG_VERSION).tar.gz
  14. PKG_LICENSE:=GPLv1+ ARTISTIC
  15. PKG_LICENSE_FILES:=LICENSE
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/WWW-Curl-$(PKG_VERSION)
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-www-curl
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Perl bindings to libcurl
  24. URL:=http://search.cpan.org/dist/WWW-Curl/
  25. DEPENDS:=perl +libcurl
  26. endef
  27. define Build/Configure
  28. $(call perlmod/Configure,$(STAGING_DIR)/usr/include,)
  29. endef
  30. define Build/Compile
  31. $(call perlmod/Compile,,)
  32. endef
  33. define Package/perl-www-curl/install
  34. $(call perlmod/Install,$(1),WWW/Curl WWW/Curl.pm auto/WWW/Curl)
  35. endef
  36. $(eval $(call BuildPackage,perl-www-curl))