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.

47 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2014 - 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-test-harness
  9. PKG_VERSION:=3.42
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=Test-Harness-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/L/LE/LEONT
  13. PKG_HASH:=0fd90d4efea82d6e262e6933759e85d27cbcfa4091b14bf4042ae20bab528e53
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Test-Harness-$(PKG_VERSION)
  15. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  16. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-test-harness
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Perl Test Harness
  24. URL:=https://search.cpan.org/dist/Test-Harness/
  25. DEPENDS:=perl +perlbase-base +perlbase-benchmark +perlbase-config +perlbase-essential +perlbase-file +perlbase-getopt +perlbase-io +perlbase-posix +perlbase-text
  26. endef
  27. define Build/Configure
  28. $(call perlmod/Configure,,)
  29. endef
  30. define Build/Compile
  31. $(call perlmod/Compile,,)
  32. endef
  33. define Package/perl-test-harness/install
  34. $(call perlmod/Install,$(1),App auto/Test TAP Test)
  35. endef
  36. $(eval $(call BuildPackage,perl-test-harness))