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.

66 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-inline
  9. PKG_VERSION:=0.86
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=Inline-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/I/IN/INGY
  13. PKG_HASH:=510a7de2d011b0db80b0874e8c0f7390010991000ae135cff7474df1e6d51e3a
  14. PKG_MAINTAINER:=Marcel Denia <naoir@gmx.net>
  15. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  16. PKG_LICENSE_FILES:=LICENSE
  17. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Inline-$(PKG_VERSION)
  18. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/Inline-$(PKG_VERSION)
  19. HOST_BUILD_DEPENDS:=perl/host
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/host-build.mk
  22. include ../perl/perlmod.mk
  23. define Package/perl-inline
  24. SUBMENU:=Perl
  25. SECTION:=lang
  26. CATEGORY:=Languages
  27. TITLE:=Write subroutines in other languages
  28. URL:=https://search.cpan.org/dist/Inline/
  29. DEPENDS:=perl +perlbase-base +perlbase-config +perlbase-cwd +perlbase-digest +perlbase-essential +perlbase-fcntl +perlbase-file
  30. endef
  31. define Build/Configure
  32. $(call perlmod/Configure,,)
  33. endef
  34. define Build/Compile
  35. $(call perlmod/Compile,,)
  36. endef
  37. define Package/perl-inline/install
  38. $(call perlmod/Install,$(1),Inline.pm Inline auto/Inline)
  39. endef
  40. define Host/Configure
  41. $(call perlmod/host/Configure,,,)
  42. endef
  43. define Host/Compile
  44. $(call perlmod/host/Compile,,)
  45. endef
  46. define Host/Install
  47. $(call perlmod/host/Install,$(1),)
  48. endef
  49. $(eval $(call BuildPackage,perl-inline))
  50. $(eval $(call HostBuild))