summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/perl
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-01-04 23:13:33 +0100
committerSebastien Helleu <flashcode@flashtux.org>2008-01-04 23:13:33 +0100
commit23273bf47a94c759d36584dad7053f0867556869 (patch)
treed444d0cf2f666cf04e6d9b266b2f37aca342da4a /src/plugins/scripts/perl
parentfd7b2f4fabc9be200588328bf07a790c7d84c164 (diff)
downloadweechat-23273bf47a94c759d36584dad7053f0867556869.zip
Added macros for name/description/author/version/license of plugins
Diffstat (limited to 'src/plugins/scripts/perl')
-rw-r--r--src/plugins/scripts/perl/perl.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/scripts/perl/perl.c b/src/plugins/scripts/perl/perl.c
index 49c766f47..a1eeef6ae 100644
--- a/src/plugins/scripts/perl/perl.c
+++ b/src/plugins/scripts/perl/perl.c
@@ -39,9 +39,11 @@
#include "../../weechat-plugin.h"
#include "../weechat-script.h"
-char plugin_name[] = "Perl";
-char plugin_version[] = "0.1";
-char plugin_description[] = "Perl scripts support";
+WEECHAT_PLUGIN_NAME("perl");
+WEECHAT_PLUGIN_DESCRIPTION("Perl plugin for WeeChat");
+WEECHAT_PLUGIN_AUTHOR("FlashCode <flashcode@flashtux.org>");
+WEECHAT_PLUGIN_VERSION("0.1");
+WEECHAT_PLUGIN_LICENSE("GPL");
t_weechat_plugin *perl_plugin;