diff options
author | pettai <pettai@pkgsrc.org> | 2013-03-05 23:41:00 +0000 |
---|---|---|
committer | pettai <pettai@pkgsrc.org> | 2013-03-05 23:41:00 +0000 |
commit | a9f6bd4329b7a132f9c9e7f6c77d0a724fc64e02 (patch) | |
tree | b513b2279eb5a7e67158e9c534acf279931efb01 | |
parent | 19223f53a300b696d2a9e33d23846789598c8af2 (diff) | |
download | pkgsrc-a9f6bd4329b7a132f9c9e7f6c77d0a724fc64e02.tar.gz |
This module is a low-level interface to the Mac OS X Property List (plist)
format. You probably shouldn't use this in applications--build interfaces
on top of this so you don't have to put all the heinous multi-level object
stuff where people have to look at it.
You can parse a plist file and get back a data structure. You can take that
data structure and get back the plist as XML. If you want to change the
structure inbetween that's your business. :)
You don't need to be on Mac OS X to use this. It simply parses and
manipulates a text format that Mac OS X uses.
-rw-r--r-- | misc/p5-Mac-PropertyList/DESCR | 11 | ||||
-rw-r--r-- | misc/p5-Mac-PropertyList/Makefile | 15 | ||||
-rw-r--r-- | misc/p5-Mac-PropertyList/distinfo | 5 |
3 files changed, 31 insertions, 0 deletions
diff --git a/misc/p5-Mac-PropertyList/DESCR b/misc/p5-Mac-PropertyList/DESCR new file mode 100644 index 00000000000..61d66c8ff80 --- /dev/null +++ b/misc/p5-Mac-PropertyList/DESCR @@ -0,0 +1,11 @@ +This module is a low-level interface to the Mac OS X Property List (plist) +format. You probably shouldn't use this in applications--build interfaces +on top of this so you don't have to put all the heinous multi-level object +stuff where people have to look at it. + +You can parse a plist file and get back a data structure. You can take that +data structure and get back the plist as XML. If you want to change the +structure inbetween that's your business. :) + +You don't need to be on Mac OS X to use this. It simply parses and +manipulates a text format that Mac OS X uses. diff --git a/misc/p5-Mac-PropertyList/Makefile b/misc/p5-Mac-PropertyList/Makefile new file mode 100644 index 00000000000..9b75375bfa2 --- /dev/null +++ b/misc/p5-Mac-PropertyList/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1 2013/03/05 23:41:00 pettai Exp $ + +DISTNAME= Mac-PropertyList-1.38 +PKGNAME= p5-${DISTNAME} +CATEGORIES= misc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mac/} + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Work with Mac plists at a low level +LICENSE= ${PERL5_LICENSE} + +PERL5_PACKLIST= auto/Mac/PropertyList/.packlist + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/p5-Mac-PropertyList/distinfo b/misc/p5-Mac-PropertyList/distinfo new file mode 100644 index 00000000000..796bddcf937 --- /dev/null +++ b/misc/p5-Mac-PropertyList/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2013/03/05 23:41:00 pettai Exp $ + +SHA1 (Mac-PropertyList-1.38.tar.gz) = a231b7d50008097644c3946799511fc2733ea666 +RMD160 (Mac-PropertyList-1.38.tar.gz) = 299e98dc3e8f78cba9807c9e7afa38cb27019c07 +Size (Mac-PropertyList-1.38.tar.gz) = 31913 bytes |