diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-04-19 12:17:08 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-19 13:43:44 +0200 |
commit | c8e2c56de47d5ea14f80bd9be0cbb6da87ae4b07 (patch) | |
tree | e5f5083cc347242de93673f0d094be509cde083a | |
parent | 27e4a433b44b63d91f24bfa2a475386d0cd54356 (diff) | |
download | buildroot-c8e2c56de47d5ea14f80bd9be0cbb6da87ae4b07.tar.gz buildroot-c8e2c56de47d5ea14f80bd9be0cbb6da87ae4b07.zip |
package/perl-http-cookies: New package
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/perl-http-cookies/Config.in | 7 | ||||
-rw-r--r-- | package/perl-http-cookies/perl-http-cookies.hash | 3 | ||||
-rw-r--r-- | package/perl-http-cookies/perl-http-cookies.mk | 14 |
4 files changed, 25 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 2c6fd9b68c..027f103e8f 100644 --- a/package/Config.in +++ b/package/Config.in @@ -512,6 +512,7 @@ menu "Perl libraries/modules" source "package/perl-gdtextutil/Config.in" source "package/perl-html-parser/Config.in" source "package/perl-html-tagset/Config.in" + source "package/perl-http-cookies/Config.in" source "package/perl-http-date/Config.in" source "package/perl-http-message/Config.in" source "package/perl-io-html/Config.in" diff --git a/package/perl-http-cookies/Config.in b/package/perl-http-cookies/Config.in new file mode 100644 index 0000000000..4dd2fd9b4c --- /dev/null +++ b/package/perl-http-cookies/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_PERL_HTTP_COOKIES + bool "perl-http-cookies" + select BR2_PACKAGE_PERL_HTTP_MESSAGE + help + Objects that represent a "cookie jar" + + http://github.com/gisle/http-cookies diff --git a/package/perl-http-cookies/perl-http-cookies.hash b/package/perl-http-cookies/perl-http-cookies.hash new file mode 100644 index 0000000000..94e5f31c29 --- /dev/null +++ b/package/perl-http-cookies/perl-http-cookies.hash @@ -0,0 +1,3 @@ +# retrieved by scancpan from http://cpan.metacpan.org/ +md5 ecfd0eeb88512033352c2f13c9580f03 HTTP-Cookies-6.01.tar.gz +sha256 f5d3ade383ce6389d80cb0d0356b643af80435bb036afd8edce335215ec5eb20 HTTP-Cookies-6.01.tar.gz diff --git a/package/perl-http-cookies/perl-http-cookies.mk b/package/perl-http-cookies/perl-http-cookies.mk new file mode 100644 index 0000000000..b3bfa2c61c --- /dev/null +++ b/package/perl-http-cookies/perl-http-cookies.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# perl-http-cookies +# +################################################################################ + +PERL_HTTP_COOKIES_VERSION = 6.01 +PERL_HTTP_COOKIES_SOURCE = HTTP-Cookies-$(PERL_HTTP_COOKIES_VERSION).tar.gz +PERL_HTTP_COOKIES_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GAAS +PERL_HTTP_COOKIES_DEPENDENCIES = perl-http-message +PERL_HTTP_COOKIES_LICENSE = Artistic or GPLv1+ +PERL_HTTP_COOKIES_LICENSE_FILES = README + +$(eval $(perl-package)) |