Merge pull request #9706 from expiron/kcptun-updates
[feed/packages.git] / lang / perl-text-csv_xs / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=perl-text-csv_xs
11 PKG_VERSION:=1.39
12 PKG_RELEASE:=2
13
14 PKG_SOURCE_URL:=https://www.cpan.org/authors/id/H/HM/HMBRAND/
15 PKG_SOURCE:=Text-CSV_XS-$(PKG_VERSION).tgz
16 PKG_HASH:=aa4e424eaf68bea0d0e8c16b961c942b64926e6183ce1dbbc6c799eafb0a9ebd
17
18 PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
19 PKG_MAINTAINER:=Philip Prindeville <philipp@redfish-solutions.com>
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/perl/Text-CSV_XS-$(PKG_VERSION)
22
23 include $(INCLUDE_DIR)/package.mk
24 include ../perl/perlmod.mk
25
26 define Package/perl-text-csv_xs
27 SUBMENU:=Perl
28 SECTION:=lang
29 CATEGORY:=Languages
30 TITLE:=Text comma-separated values manipulation routines
31 URL:=http://search.cpan.org/dist/Text-CSV_XS/
32 DEPENDS:=perl +perlbase-essential +perlbase-config +perlbase-io +perlbase-dynaloader
33 endef
34
35 define Build/Configure
36 $(call perlmod/Configure,,)
37 endef
38
39 define Build/Compile
40 $(call perlmod/Compile,,)
41 endef
42
43 define Package/perl-text-csv_xs/install
44 $(call perlmod/Install,$(1),Text Text/CSV_XS.pm auto/Text/CSV_XS)
45 endef
46
47
48 $(eval $(call BuildPackage,perl-text-csv_xs))