Bump version and update Changes
[svg-spritemaker.git] / README
CommitLineData
5c7da44c 1SVG-SpriteMaker version 0.002
b1b509f4
MG
2=============================
3
4This distribution includes:
5* SVG::SpriteMaker, a library for creating SVG sprites
6* svg-spritemaker, a simple command-line interface to the library
7
8A SVG sprite is a SVG image that contains several smaller images that
9can be referred to using fragment identifiers. For example, this HTML
10fragment:
11
12 <img src="/img/cat.svg" alt="A cat">
13 <img src="/img/dog.svg" alt="A dog">
14 <img src="/img/horse.svg" alt="A horse">
15
16Can be replaced with
17
18 <img src="/img/sprite.svg#cat" alt="A cat">
19 <img src="/img/sprite.svg#dog" alt="A dog">
20 <img src="/img/sprite.svg#horse" alt="A horse">
21
22INSTALLATION
23
24To install this module type the following:
25
26 perl Makefile.PL
27 make
28 make test
29 make install
30
31DEPENDENCIES
32
33This module requires these other modules and libraries:
34
35* SVG
36* SVG::Parser
37
38COPYRIGHT AND LICENCE
39
5c7da44c 40Copyright (C) 2015-2017 by Marius Gavrilescu
b1b509f4
MG
41
42This library is free software; you can redistribute it and/or modify
43it under the same terms as Perl itself, either Perl version 5.20.2 or,
44at your option, any later version of Perl 5 you may have available.
45
46
This page took 0.012205 seconds and 4 git commands to generate.