diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-04-19 12:17:04 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-19 13:43:44 +0200 |
commit | b00822f78dfc1215b799e4fe4c6f84c7cb501b52 (patch) | |
tree | 66ab36f87dc07255ccba5513e097777d74608494 | |
parent | 7e6e868a09c4ba033e5f828747034741cdb78677 (diff) | |
download | buildroot-b00822f78dfc1215b799e4fe4c6f84c7cb501b52.tar.gz buildroot-b00822f78dfc1215b799e4fe4c6f84c7cb501b52.zip |
package/perl-io-html: 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-io-html/Config.in | 6 | ||||
-rw-r--r-- | package/perl-io-html/perl-io-html.hash | 3 | ||||
-rw-r--r-- | package/perl-io-html/perl-io-html.mk | 14 |
4 files changed, 24 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 883f7e9be8..0221a59016 100644 --- a/package/Config.in +++ b/package/Config.in @@ -513,6 +513,7 @@ menu "Perl libraries/modules" source "package/perl-html-parser/Config.in" source "package/perl-html-tagset/Config.in" source "package/perl-http-date/Config.in" + source "package/perl-io-html/Config.in" source "package/perl-io-socket-ssl/Config.in" source "package/perl-json-tiny/Config.in" source "package/perl-mojolicious/Config.in" diff --git a/package/perl-io-html/Config.in b/package/perl-io-html/Config.in new file mode 100644 index 0000000000..69770226b3 --- /dev/null +++ b/package/perl-io-html/Config.in @@ -0,0 +1,6 @@ +config BR2_PACKAGE_PERL_IO_HTML + bool "perl-io-html" + help + Perl module that opens a file and performs automatic charset detection + + https://github.com/madsen/io-html diff --git a/package/perl-io-html/perl-io-html.hash b/package/perl-io-html/perl-io-html.hash new file mode 100644 index 0000000000..8d8c48d433 --- /dev/null +++ b/package/perl-io-html/perl-io-html.hash @@ -0,0 +1,3 @@ +# retrieved by scancpan from http://cpan.metacpan.org/ +md5 3f8958718844dc96b9f6946f21d70d22 IO-HTML-1.001.tar.gz +sha256 ea78d2d743794adc028bc9589538eb867174b4e165d7d8b5f63486e6b828e7e0 IO-HTML-1.001.tar.gz diff --git a/package/perl-io-html/perl-io-html.mk b/package/perl-io-html/perl-io-html.mk new file mode 100644 index 0000000000..3926d4411f --- /dev/null +++ b/package/perl-io-html/perl-io-html.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# perl-io-html +# +################################################################################ + +PERL_IO_HTML_VERSION = 1.001 +PERL_IO_HTML_SOURCE = IO-HTML-$(PERL_IO_HTML_VERSION).tar.gz +PERL_IO_HTML_SITE = $(BR2_CPAN_MIRROR)/authors/id/C/CJ/CJM +PERL_IO_HTML_DEPENDENCIES = perl +PERL_IO_HTML_LICENSE = Artistic or GPLv1+ +PERL_IO_HTML_LICENSE_FILES = LICENSE + +$(eval $(perl-package)) |