Ticket #20230: Portfile

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

New Portfile for py25-pybtex

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           python25 1.0
6
7name                py25-pybtex
8version             20090402
9categories          python textproc
10platforms           darwin
11maintainers         cfedermann@gmail.com
12description         A BibTeX-compatible bibliography processor in Python.
13long_description    Pybtex reads citation information from a file and \
14                    produces a formatted bibliography.  BibTeX style files \
15                    are supported.  Alternatively it is possible to write \
16                    styles in Python.
17
18homepage            http://pybtex.sourceforge.net/
19master_sites        http://pypi.python.org/packages/source/p/pybtex/
20distname            pybtex-${version}
21checksums           md5 d9eb71b25e705109ab6aed7d3bb7d213 \
22                    sha1 4df8b4639f22b9048d319e7a8379c2ed536cb363 \
23                    rmd160 00d75e1b36dc9a66f1903c50cf3ead69e344a49b
24
25extract.suffix      .tar.bz2
26extract.cmd         bzip2
27
28depends_lib         port:py25-elementtree \
29                    port:py25-parsing \
30                    port:py25-yaml
31
32test.run            yes
33test.cmd            ${python.bin} setup.py
34test.env            PYTHONPATH=${worksrcpath}/build/lib