]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/perl-uri: New package
authorBernd Kuhls <bernd.kuhls@t-online.de>
Sun, 19 Apr 2015 10:17:05 +0000 (12:17 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 19 Apr 2015 11:43:44 +0000 (13:43 +0200)
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/perl-uri/Config.in [new file with mode: 0644]
package/perl-uri/perl-uri.hash [new file with mode: 0644]
package/perl-uri/perl-uri.mk [new file with mode: 0644]

index 0221a590166ff0078e77c5e1ff80ed10d71cde6a..51f44a2c11740cde8ffb434ffaec4cdab2f8aea7 100644 (file)
@@ -523,6 +523,7 @@ menu "Perl libraries/modules"
        source "package/perl-path-tiny/Config.in"
        source "package/perl-time-hires/Config.in"
        source "package/perl-try-tiny/Config.in"
+       source "package/perl-uri/Config.in"
        source "package/perl-xml-libxml/Config.in"
        source "package/perl-xml-namespacesupport/Config.in"
        source "package/perl-xml-sax/Config.in"
diff --git a/package/perl-uri/Config.in b/package/perl-uri/Config.in
new file mode 100644 (file)
index 0000000..62a53f2
--- /dev/null
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PERL_URI
+       bool "perl-uri"
+       help
+         The module implements the URI class. Objects of this class represent
+         Uniform Resource Identifier references as specified in RFC 2396 and
+         updated by RFC 2732.
+
+         https://github.com/libwww-perl/uri
diff --git a/package/perl-uri/perl-uri.hash b/package/perl-uri/perl-uri.hash
new file mode 100644 (file)
index 0000000..da33416
--- /dev/null
@@ -0,0 +1,3 @@
+# retrieved by scancpan from http://cpan.metacpan.org/
+md5    d0ef53b6c63bcc02ba55f405c30741e3 URI-1.67.tar.gz
+sha256 7088d43d5f4902becfa5e0627751f5e6d0e0bdd1637b2d39e70ce807068a274e URI-1.67.tar.gz
diff --git a/package/perl-uri/perl-uri.mk b/package/perl-uri/perl-uri.mk
new file mode 100644 (file)
index 0000000..421a89f
--- /dev/null
@@ -0,0 +1,14 @@
+################################################################################
+#
+# perl-uri
+#
+################################################################################
+
+PERL_URI_VERSION = 1.67
+PERL_URI_SOURCE = URI-$(PERL_URI_VERSION).tar.gz
+PERL_URI_SITE = $(BR2_CPAN_MIRROR)/authors/id/E/ET/ETHER
+PERL_URI_DEPENDENCIES = perl
+PERL_URI_LICENSE = Artistic or GPLv1+
+PERL_URI_LICENSE_FILES = README
+
+$(eval $(perl-package))