diff options
author | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
---|---|---|
committer | Han Boetes <han@mijncomputer.nl> | 2006-11-13 21:12:21 +0100 |
commit | 32295a9faf0f964a313a84bb5a4e3fdeaf15e72f (patch) | |
tree | 48bd60cc85026b7f5effe956cd01e09d1e66234c /p5-xml-writer | |
parent | 4d6af94f215944409f18f85d1804bc04c3d32efd (diff) | |
download | contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.gz contrib-32295a9faf0f964a313a84bb5a4e3fdeaf15e72f.tar.xz |
abiword: initial release
Diffstat (limited to 'p5-xml-writer')
-rw-r--r-- | p5-xml-writer/.footprint | 10 | ||||
-rw-r--r-- | p5-xml-writer/.md5sum | 1 | ||||
-rw-r--r-- | p5-xml-writer/Pkgfile | 27 |
3 files changed, 38 insertions, 0 deletions
diff --git a/p5-xml-writer/.footprint b/p5-xml-writer/.footprint new file mode 100644 index 000000000..97eb6b8ee --- /dev/null +++ b/p5-xml-writer/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/perl5/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/ +drwxr-xr-x root/root usr/lib/perl5/site_perl/5.8.8/XML/ +-r--r--r-- root/root usr/lib/perl5/site_perl/5.8.8/XML/Writer.pm +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man3/ +-r--r--r-- root/root usr/man/man3/XML::Writer.3pm.gz diff --git a/p5-xml-writer/.md5sum b/p5-xml-writer/.md5sum new file mode 100644 index 000000000..cb80828e9 --- /dev/null +++ b/p5-xml-writer/.md5sum @@ -0,0 +1 @@ +712b27cad3fb23ca44eff4cbbac23e6a XML-Writer-0.600.tar.gz diff --git a/p5-xml-writer/Pkgfile b/p5-xml-writer/Pkgfile new file mode 100644 index 000000000..be7a9e61c --- /dev/null +++ b/p5-xml-writer/Pkgfile @@ -0,0 +1,27 @@ +# Description: parse XML documents +# URL: http://search.cpan.org/~msergeant/XML-Parser-2.34/Parser.pm +# Maintainer: Han Boetes <han@mijncomputer.nl> +# Packager: Han Boetes <han@mijncomputer.nl> +# Depends on: perl + +name=p5-xml-writer +capsname=XML-Writer +version=0.600 +release=1 +source="http://www.cpan.org/modules/by-module/${capsname%%-*}/$capsname-$version.tar.gz" + +build() +{ + cd $capsname-$version + perl Makefile.PL + make OPTIMIZE="$CFLAGS" + make install DESTDIR=$PKG + # Remove perlcrap + find $PKG \ + -name .packlist -or \ + -name '*.bs' -or \ + -name autosplit.ix -or \ + -name perllocal.pod | xargs rm + # Remove empty directories + find $PKG -depth -empty -exec rm -rf {} \; +} |