Ticket #20225: Portfile

File Portfile, 1.4 KB (added by cfedermann (Christian Federmann), 15 years ago)

New Portfile for py26-vobject 0.8.1c

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                py26-vobject
8version             0.8.1c
9categories          python
10platforms           darwin
11maintainers         cfedermann@gmail.com
12description         Python package for parsing and generating vCard and \
13                    vCalendar files.
14long_description    vObject is intended to be a full featured Python package \
15                    for parsing and generating vCard and vCalendar files. It \
16                    is being developed in concert with the Open Source \
17                    Application Foundation's Chandler project.
18
19homepage            http://vobject.skyhouseconsulting.com/
20master_sites        http://vobject.skyhouseconsulting.com/
21distname            vobject-${version}
22checksums           md5 c9686dd74d39fdae140890d9c694c076 \
23                    sha1 97f1daf9d813a2b2128c2d39ca52bbbcc152fdfd \
24                    rmd160 ca1b1f207b6b7d4418a401938656627e6404aacf
25
26depends_lib         port:py26-dateutil \
27                    port:py26-setuptools
28
29test.run            yes
30test.cmd            ${python.bin} test_vobject.py
31test.target
32test.env            PYTHONPATH=${worksrcpath}/build/lib
33
34## post-destroot    {
35##  xinstall -m 644 -W ${worksrcpath} LICENSE README \
36##      ${destroot}${prefix}/share/doc/${name}
37## }