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.

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