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

  1. #
  2. # Copyright (C) 2017 Philip Prindeville, Redfish Solutions, LLC
  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-text-csv_xs
  9. PKG_VERSION:=1.47
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE:=Text-CSV_XS-$(PKG_VERSION).tgz
  12. PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/H/HM/HMBRAND
  13. PKG_HASH:=4bbaffbdfb68505ef3326dc748e63ebe0db31157b78ca8dfcb8c3cd1d1313262
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Text-CSV_XS-$(PKG_VERSION)
  15. PKG_MAINTAINER:=Philip Prindeville <philipp@redfish-solutions.com>
  16. PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../perl/perlmod.mk
  19. define Package/perl-text-csv_xs
  20. SUBMENU:=Perl
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Text comma-separated values manipulation routines
  24. URL:=https://search.cpan.org/dist/Text-CSV_XS/
  25. DEPENDS:=perl +perlbase-essential +perlbase-config +perlbase-io +perlbase-dynaloader
  26. endef
  27. define Build/Configure
  28. $(call perlmod/Configure,,)
  29. endef
  30. define Build/Compile
  31. $(call perlmod/Compile,,)
  32. endef
  33. define Package/perl-text-csv_xs/install
  34. $(call perlmod/Install,$(1),Text Text/CSV_XS.pm auto/Text/CSV_XS)
  35. endef
  36. $(eval $(call BuildPackage,perl-text-csv_xs))