1 | # $Id: Portfile 44419 2008-12-28 09:31:44Z akitada@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | |
---|
6 | name py26-feedparser |
---|
7 | version 4.1 |
---|
8 | categories-append net |
---|
9 | platforms darwin |
---|
10 | maintainers wanadoo.fr:neric27 openmaintainer |
---|
11 | description RSS and Atom parser |
---|
12 | long_description Universal Feed Parser is a Python module for downloading \ |
---|
13 | and parsing syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, \ |
---|
14 | Userland RSS 0.91, RSS 0.92, RSS 0.93, RSS 0.94, RSS 1.0, RSS 2.0, Atom, \ |
---|
15 | and CDF feeds. |
---|
16 | homepage http://feedparser.org/ |
---|
17 | master_sites sourceforge:feedparser |
---|
18 | distname feedparser-${version} |
---|
19 | |
---|
20 | use_zip yes |
---|
21 | |
---|
22 | checksums md5 7ab1140c1e29d4cd52ab20fa7b1f8640 |
---|
23 | |
---|
24 | pre-extract { |
---|
25 | extract.post_args -d ${workpath}/${distname} |
---|
26 | } |
---|
27 | |
---|
28 | post-destroot { |
---|
29 | xinstall -m 644 -W ${worksrcpath} LICENSE README \ |
---|
30 | ${destroot}${prefix}/share/doc/${name} |
---|
31 | file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}/docs |
---|
32 | } |
---|