SVG-Metadata
view release on metacpan or search on metacpan
$ perl Makefile.PL
$ make
$ su
# make install
Bugs and Ideas
==============
Please report bugs and ideas to the author or to either the Inkscape
development mailing list, at inkscape-devel@lists.sourceforge.net, or
the Open Clip Art Library mailing list, at clipart@freedesktop.org.
scripts/retrieve_clipart view on Meta::CPAN
#!/bin/sh
# This shell script does the processing of the Open Clip Art Library
# files to generate a release tarball
distname=openclipart-0.04-pre
distdir=$distname
incomingdir=./ocal_incoming
uploaduri=freedesktop.org:/projects/clipart/public_html/downloads/
collateraldir=openclipart
if [ -d $distdir ]
then
echo "rm -rf $distdir"
rm -rf $distdir
fi
echo "mkdir -p '$distdir'"
mkdir -p $distdir
# TODO: Download latest files
echo "rsync --delete -a -e ssh freedesktop.org:/projects/clipart/public_html/incoming/ $incomingdir/"
rsync --delete -av -e ssh freedesktop.org:/projects/clipart/public_html/incoming/ $incomingdir
exit 0
( run in 0.441 second using v1.01-cache-2.11-cpan-299005ec8e3 )