+platform
[www.jankratochvil.net.git] / project / pipebuf / ListItem.pm
index e58bc92..573f7fd 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::pipebuf;
+package project::pipebuf::ListItem;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+use My::Web;
 
-our %ListItem=(
-               "name"=>"PipeBuf - Data Buffering Tool",
+
+our @ListItem=(
+               "name"=>"pipebuf",
+               "platform"=>"unixuser",
+               "priority"=>8,
                "download"=>"pipebuf.c",
-               "summary"=>"Pipe buffer",
+               "summary"=>"UNIX pipe realtime buffering",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C",
-               "description"=>""
-                               .'<p>You can do a buffering of realtime data such as audio stream by inserting this program'
-                               .' with traditional &quot;UNIX filter&quot; behaviour. It reads as fast as possible into'
-                               .' its cache and also in the same time writes as fast as possible to the output. In fact'
-                               .' it is implemented as two processes (no threads - no pthread libraries needed, only IPC'
-                               .' communication used). Features custom buffer sizes, prefill (start writing of the first byte'
-                               .' only after the WHOLE buffer has beel filled up) and warning messages when buffer is getting'
-                               .' emptied.</p>'
+               "description"=><<"HERE",
+<p>You can do a buffering of realtime data such as audio stream by inserting this program
+with traditional &quot;UNIX filter&quot; behaviour. It reads as fast as possible into
+its cache and also in the same time writes as fast as possible to the output. In fact
+it is implemented as two processes (no threads - no pthread libraries needed, only IPC
+communication used). Features custom buffer sizes, prefill (start writing of the first byte
+only after the WHOLE buffer has beel filled up) and warning messages when buffer is getting
+emptied.</p>'
+HERE
                );
 
 1;