1 | # $Id: Portfile $ |
---|
2 | PortSystem 1.0 |
---|
3 | PortGroup python24 1.0 |
---|
4 | |
---|
5 | name py-feedparser |
---|
6 | version 3.3 |
---|
7 | categories python |
---|
8 | platforms darwin |
---|
9 | maintainers yuhei@pop21.odn.ne.jp |
---|
10 | description RSS and Atom parser |
---|
11 | long_description Universal Feed Parser is a Python module for downloading \ |
---|
12 | and parsing syndicated feeds. It can handle RSS 0.90, Netscape RSS 0.91, \ |
---|
13 | Userland RSS 0.91, RSS 0.92, RSS 0.93, RSS 0.94, RSS 1.0, RSS 2.0, Atom, \ |
---|
14 | and CDF feeds. |
---|
15 | homepage http://feedparser.org/ |
---|
16 | master_sites sourceforge:feedparser |
---|
17 | distname feedparser-${version} |
---|
18 | use_zip yes |
---|
19 | checksums md5 f95db0d0e8832197c40a90f517546e21 |
---|
20 | |
---|
21 | post-extract { |
---|
22 | file rename ${workpath}/feedparser ${workpath}/${distname} |
---|
23 | } |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | xinstall -m 644 -W ${worksrcpath} LICENSE README \ |
---|
27 | ${destroot}${prefix}/share/doc/${name} |
---|
28 | file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}/docs |
---|
29 | } |
---|