diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-09-05 17:06:42 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-09-05 17:06:42 +0200 |
commit | 3bac6ec762c3e48ab3d5d7fb058005ad03879646 (patch) | |
tree | e6932d9853e8e45775019a9c2148053f734a334d /SBO-Lib/lib | |
parent | c74a933aa8a80918c3c4206de7f8cfb35a4b468e (diff) | |
download | sbotools2-3bac6ec762c3e48ab3d5d7fb058005ad03879646.tar.xz |
SBO::Lib: add documentation pointing to submodules
Diffstat (limited to 'SBO-Lib/lib')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index e5b9271..3103eaf 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -17,6 +17,43 @@ use warnings FATAL => 'all'; package SBO::Lib; our $VERSION = '2.0'; +=head1 NAME + +SBO::Lib - Library for working with SlackBuilds.org. + +=head1 SYNOPSIS + + use SBO::Lib qw/ :all /; + +=head1 DESCRIPTION + +SBO::Lib is the entry point for all the related modules, and is simply re- +exporting all of their exports. + +=head1 SEE ALSO + +=over + +=item L<SBO::Lib::Util> + +=item L<SBO::Lib::Info> + +=item L<SBO::Lib::Repo> + +=item L<SBO::Lib::Tree> + +=item L<SBO::Lib::Pkgs> + +=item L<SBO::Lib::Build> + +=item L<SBO::Lib::Readme> + +=item L<SBO::Lib::Download> + +=back + +=cut + use SBO::Lib::Util qw/ :all /; use SBO::Lib::Info qw/ :all /; use SBO::Lib::Repo qw/ :all /; @@ -58,6 +95,20 @@ unless ($< == 0) { exit _ERR_USAGE; } +=head1 AUTHORS + +SBO::Lib was originally written by Jacob Pipkin <j@dawnrazor.net> with +contributions from Luke Williams <xocel@iquidus.org> and Andreas +Guldstrand <andreas.guldstrand@gmail.com>. + +=head1 LICENSE + +The sbotools are licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING>. + +Copyright (C) 2012-2016, Jacob Pipkin, Luke Williams, Andreas Guldstrand. + +=cut + 'ok'; __END__ |