• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H26-Jun-2009-2513

lib/WWW/H26-Jun-2009-503240

t/H26-Jun-2009-7862

ChangesH A D26-Jun-20092.4 KiB8270

MANIFESTH A D26-Jun-2009742 1312

META.ymlH A D26-Jun-2009831 3130

Makefile.PLH A D26-Jun-2009630 2422

READMEH A D26-Jun-20091.5 KiB5437

README

1WWW::TinySong version 1.01
2==========================
3
4tinysong.com is a web app that can be queried for a song and returns a tiny
5URL, allowing you to listen to the song for free online and share it with
6friends.  WWW::TinySong is a Perl interface to this service, allowing you
7to programmatically search its underlying database..
8
9INSTALLATION
10
11To install this module, open a terminal in the directory containing the
12unarchived source and type:
13
14   perl Makefile.PL
15   make
16   make test
17   make install
18
19This should work on most modern systems assuming you have Perl and a Make
20utility installed and configured in the usual way.  The most likely change
21you might need to make to the above is replacing the first line with
22
23    perl Makefile.PL PREFIX=~
24
25if you're on a Unix-like OS and wish to install the module in your home
26directory.
27
28The `make test' step is optional but recommended to verify that the code
29works as expected on your system before proceeding with the install.
30
31DEPENDENCIES
32
33This module requires the following other modules:
34
35  Carp
36  Exporter
37  CGI
38  HTML::Parser
39  LWP::UserAgent
40
41CONTACT
42
43You can reach me by e-mail at <mlpalii@gmail.com>.  My Google Profile at
44http://www.google.com/profiles/mlpalii should list additional ways of getting
45in touch.
46
47COPYRIGHT AND LICENSE
48
49Copyright (C) 2009 by Miorel-Lucian Palii
50
51This library is free software; you can redistribute it and/or modify
52it under the same terms as Perl itself, either Perl version 5.8.8 or,
53at your option, any later version of Perl 5 you may have available.
54