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.7 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-c
  9. PKG_VERSION:=0.81
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=Inline-C-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://www.cpan.org/authors/id/T/TI/TINITA
  13. PKG_HASH:=f185258d9050d7f79b4f00f12625cc469c2f700ff62d3e831cb18d80d2c87aac
  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. HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/perl/Inline-C-$(PKG_VERSION)
  18. HOST_BUILD_DEPENDS:=perl/host perl-inline/host perl-parse-recdescent/host perl-file-sharedir-install/host
  19. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Inline-C-$(PKG_VERSION)
  20. PKG_BUILD_DEPENDS:=perl-inline/host perl-parse-recdescent/host perl-file-sharedir-install/host
  21. include $(INCLUDE_DIR)/package.mk
  22. include $(INCLUDE_DIR)/host-build.mk
  23. include ../perl/perlmod.mk
  24. define Package/perl-inline-c
  25. SUBMENU:=Perl
  26. SECTION:=lang
  27. CATEGORY:=Languages
  28. TITLE:=C Language Support for Inline
  29. URL:=https://search.cpan.org/dist/Inline-C/
  30. DEPENDS:=perl +perl-inline +perl-parse-recdescent +perlbase-config +perlbase-cwd +perlbase-data +perlbase-essential +perlbase-file +perlbase-if
  31. endef
  32. define Host/Configure
  33. $(call perlmod/host/Configure,,,)
  34. endef
  35. define Host/Compile
  36. $(call perlmod/host/Compile,,)
  37. endef
  38. define Host/Install
  39. $(call perlmod/host/Install,$(1),)
  40. endef
  41. define Build/Configure
  42. $(call perlmod/Configure,,)
  43. endef
  44. define Build/Compile
  45. $(call perlmod/Compile,,)
  46. endef
  47. define Package/perl-inline-c/install
  48. $(call perlmod/Install,$(1),Inline auto/Inline)
  49. endef
  50. $(eval $(call BuildPackage,perl-inline-c))
  51. $(eval $(call HostBuild))