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.1 KiB

  1. #
  2. # Copyright (C) 2021 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-try-tiny
  9. PKG_VERSION:=0.31
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/E/ET/ETHER/
  12. PKG_SOURCE:=Try-Tiny-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=3300d31d8a4075b26d8f46ce864a1d913e0e8467ceeba6655d5d2b2e206c11be
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Try-Tiny-$(PKG_VERSION)
  15. PKG_MAINTAINER:=Matt Merhar <mattmerhar@protonmail.com>
  16. PKG_LICENSE:=MIT
  17. PKG_LICENSE_FILES:=LICENSE
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../perl/perlmod.mk
  20. define Package/perl-try-tiny
  21. SUBMENU:=Perl
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Minimal try/catch with proper preservation of $$$$@
  25. URL:=https://metacpan.org/pod/Try::Tiny
  26. DEPENDS:=perl +perlbase-essential
  27. endef
  28. define Build/Configure
  29. $(call perlmod/Configure,,)
  30. endef
  31. define Build/Compile
  32. $(call perlmod/Compile,,)
  33. endef
  34. define Package/perl-try-tiny/install
  35. $(call perlmod/Install,$(1),Try auto/Try)
  36. endef
  37. $(eval $(call BuildPackage,perl-try-tiny))