Skip to content
This repository was archived by the owner on Jul 6, 2024. It is now read-only.

Commit 48d3489

Browse files
committed
Initial checkin.
0 parents  commit 48d3489

File tree

11 files changed

+1012
-0
lines changed

11 files changed

+1012
-0
lines changed

Build.PL

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
use strict;
2+
use warnings;
3+
use Module::Build;
4+
5+
my $builder = Module::Build->new(
6+
module_name => 'Mini::Slim',
7+
license => 'perl',
8+
dist_author => '"Mark Glines" <"[email protected]">',
9+
dist_version_from => 'lib/Mini/Slim.pm',
10+
build_requires => {
11+
'Test::More' => 0,
12+
},
13+
add_to_cleanup => [ 'Mini-Slim-*' ],
14+
create_makefile_pl => 'traditional',
15+
);
16+
17+
$builder->create_build_script();

Changes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Revision history for Mini-Slim
2+
3+
0.01 Date/time
4+
First version, released on an unsuspecting world.
5+

MANIFEST

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Build.PL
2+
Changes
3+
MANIFEST
4+
README
5+
lib/Mini/Slim.pm
6+
t/00-load.t
7+
t/pod-coverage.t
8+
t/pod.t

README

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Mini-Slim
2+
3+
The README is used to introduce the module and provide instructions on
4+
how to install the module, any machine dependencies it may have (for
5+
example C compilers and installed libraries) and any other information
6+
that should be provided before the module is installed.
7+
8+
A README file is required for CPAN modules since CPAN extracts the README
9+
file from a module distribution so that people browsing the archive
10+
can use it to get an idea of the module's uses. It is usually a good idea
11+
to provide version information here so that people can decide whether
12+
fixes for the module are worth downloading.
13+
14+
15+
INSTALLATION
16+
17+
To install this module, run the following commands:
18+
19+
perl Build.PL
20+
./Build
21+
./Build test
22+
./Build install
23+
24+
SUPPORT AND DOCUMENTATION
25+
26+
After installing, you can find documentation for this module with the
27+
perldoc command.
28+
29+
perldoc Mini::Slim
30+
31+
You can also look for information at:
32+
33+
RT, CPAN's request tracker
34+
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Mini-Slim
35+
36+
AnnoCPAN, Annotated CPAN documentation
37+
http://annocpan.org/dist/Mini-Slim
38+
39+
CPAN Ratings
40+
http://cpanratings.perl.org/d/Mini-Slim
41+
42+
Search CPAN
43+
http://search.cpan.org/dist/Mini-Slim/
44+
45+
46+
COPYRIGHT AND LICENCE
47+
48+
Copyright (C) 2009 "Mark Glines"
49+
50+
This program is free software; you can redistribute it and/or modify it
51+
under the same terms as Perl itself.
52+

examples/minislim.pl

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/perl
2+
3+
use strict;
4+
use warnings;
5+
use blib;
6+
use Mini::Slim;
7+
8+
return Mini::Slim->new(@ARGV)->server();

0 commit comments

Comments
 (0)