Eet-Perl
This is a simple perl binding for the Eet library (
link)
This first version only provides simple wrappers for the C functions with a little bit of extension to provide more perl-friendliness.
The bindings only provide reading and storing simple datatypes, namely strings and numbers. Due to the fact that there is no simple way to detect the datatypes for now, you will have to pass in to "read" the expected datatype yourself. The function defaults to string, so if your data is numeric and you don’t pass in the type, I will attempt to read the data as string, chaos, therefore, may ensue.
Download the source from:
/code/Eet-0.01.tar.gzExtract and run the following:
perl Makefile.PL
make
make install # as root
Check test.pl for examples. Documentation will come soon.