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.

64 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2015 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-parse-yapp
  9. PKG_VERSION:=1.21
  10. PKG_RELEASE:=1
  11. PKG_SOURCE_URL:=https://www.cpan.org/authors/id/W/WB/WBRASWELL/
  12. PKG_SOURCE:=Parse-Yapp-$(PKG_VERSION).tar.gz
  13. PKG_HASH:=3810e998308fba2e0f4f26043035032b027ce51ce5c8a52a8b8e340ca65f13e5
  14. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  15. PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
  16. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/Parse-Yapp-$(PKG_VERSION)
  17. HOST_BUILD_DEPENDS:=perl/host
  18. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Parse-Yapp-$(PKG_VERSION)
  19. include $(INCLUDE_DIR)/package.mk
  20. include $(INCLUDE_DIR)/host-build.mk
  21. include ../perl/perlmod.mk
  22. define Package/perl-parse-yapp
  23. SUBMENU:=Perl
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. TITLE:=Yet Another Parser Parser For Perl
  27. URL:=http://search.cpan.org/dist/Parse-Yapp/
  28. DEPENDS:=perl +perlbase-essential +perlbase-test
  29. endef
  30. define Host/Configure
  31. $(call perlmod/host/Configure,,,)
  32. endef
  33. define Host/Compile
  34. $(call perlmod/host/Compile,,)
  35. endef
  36. define Host/Install
  37. $(call perlmod/host/Install,$(1),)
  38. endef
  39. define Build/Configure
  40. $(call perlmod/Configure,,)
  41. endef
  42. define Build/Compile
  43. $(call perlmod/Compile,,)
  44. endef
  45. define Package/perl-parse-yapp/install
  46. $(call perlmod/Install,$(1),Parse auto/Parse)
  47. endef
  48. $(eval $(call BuildPackage,perl-parse-yapp))
  49. $(eval $(call HostBuild))