Works OK here, Ubuntu 9.10. Did you do : (sudo) apt-get update ?
The version is unsupported and /etc/apt/sources.list must point to "old releases"
Code:
deb http://old-releases.ubuntu.com/ubuntu/ karmic main
deb http://old-releases.ubuntu.com/ubuntu/ karmic multiverse universe
deb http://old-releases.ubuntu.com/ubuntu/ karmic-updates main multiverse universe
deb http://old-releases.ubuntu.com/ubuntu/ karmic-security main multiverse universe
If you still cannot install the package, this will work :
1) sudo cpan
2) cpan >
install Text::CSV_XS Text::CSV
A manual install is also easy to do ..
http://search.cpan.org/CPAN/authors/...SV_XS-0.88.tgz
http://search.cpan.org/CPAN/authors/...SV-1.21.tar.gz
cd Text-CSV_XS-0.88/ && perl Makefile.PL && make && sudo make install
etc.
.