diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-01-04 23:13:33 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-01-04 23:13:33 +0100 |
commit | 23273bf47a94c759d36584dad7053f0867556869 (patch) | |
tree | d444d0cf2f666cf04e6d9b266b2f37aca342da4a /src/plugins/scripts/perl | |
parent | fd7b2f4fabc9be200588328bf07a790c7d84c164 (diff) | |
download | weechat-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.c | 8 |
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; |