1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | name py25-asn1 |
---|
6 | version 0.0.8a |
---|
7 | categories-append devel crypto |
---|
8 | maintainers blb |
---|
9 | description Implementation of ASN.1 types and codecs in Python |
---|
10 | long_description \ |
---|
11 | This project is dedicated to implementation of ASN.1 types (concrete \ |
---|
12 | syntax) and codecs (transfer syntaxes) for Python programming environment. |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | |
---|
16 | homepage http://pyasn1.sourceforge.net/ |
---|
17 | master_sites sourceforge:pyasn1 |
---|
18 | distname pyasn1-${version} |
---|
19 | |
---|
20 | checksums md5 1befe83fd3d8dd8bb0d0fbe58a5788a5 \ |
---|
21 | sha1 5c7f86dabca0bf9af5bbf13b8773165c09ca90f6 \ |
---|
22 | rmd160 7c01f7e2f5ae84109201aecbd572a95c586feffd |
---|
23 | |
---|
24 | post-destroot { |
---|
25 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
26 | xinstall -m 644 -W ${worksrcpath} CHANGES LICENSE README THANKS TODO \ |
---|
27 | ${destroot}${prefix}/share/doc/${name} |
---|
28 | xinstall -m 644 -W ${worksrcpath}/doc notes.html \ |
---|
29 | ${destroot}${prefix}/share/doc/${name} |
---|
30 | } |
---|
31 | |
---|