sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 3bac6ec762c3e48ab3d5d7fb058005ad03879646
parent c74a933aa8a80918c3c4206de7f8cfb35a4b468e
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Mon,  5 Sep 2016 17:06:42 +0200

SBO::Lib: add documentation pointing to submodules

Diffstat:
MSBO-Lib/lib/SBO/Lib.pm | 51+++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+), 0 deletions(-)

diff --git 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__