perl-mojolicious: new package
authorFrancois Perrad <fperrad@gmail.com>
Mon, 16 Jun 2014 19:35:57 +0000 (21:35 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 22 Jun 2014 17:27:20 +0000 (19:27 +0200)
[Thomas: as noted by Arnout, remove trailing whitespace, and fix the
license to Artistic-2.0. Also, adjust the indentation in
package/Config.in to the new standard.]

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/perl-mojolicious/Config.in [new file with mode: 0644]
package/perl-mojolicious/perl-mojolicious.mk [new file with mode: 0644]

index f43e9856c9b4319c13bce2b6afab06819b012376..12640537a56dd818e5a5927a82d214971a284b91 100644 (file)
@@ -423,6 +423,7 @@ endif
        source "package/perl/Config.in"
 if BR2_PACKAGE_PERL
 menu "Perl libraries/modules"
+       source "package/perl-mojolicious/Config.in"
 endmenu
 endif
        source "package/php/Config.in"
diff --git a/package/perl-mojolicious/Config.in b/package/perl-mojolicious/Config.in
new file mode 100644 (file)
index 0000000..766d109
--- /dev/null
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_PERL_MOJOLICIOUS
+       bool "perl-mojolicious"
+       help
+         Real-time web framework
+
+         http://mojolicio.us
diff --git a/package/perl-mojolicious/perl-mojolicious.mk b/package/perl-mojolicious/perl-mojolicious.mk
new file mode 100644 (file)
index 0000000..2c713e6
--- /dev/null
@@ -0,0 +1,13 @@
+################################################################################
+#
+# perl-mojolicious
+#
+################################################################################
+
+PERL_MOJOLICIOUS_VERSION = 5.07
+PERL_MOJOLICIOUS_SOURCE = Mojolicious-$(PERL_MOJOLICIOUS_VERSION).tar.gz
+PERL_MOJOLICIOUS_SITE = $(BR2_CPAN_MIRROR)/authors/id/S/SR/SRI/
+PERL_MOJOLICIOUS_DEPENDENCIES = perl
+PERL_MOJOLICIOUS_LICENSE = Artistic-2.0
+
+$(eval $(perl-package))