Ticket #16850: Portfile

File Portfile, 1.2 KB (added by billitch@…, 16 years ago)
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: Portfile 32256 2007-12-23 09:18:47Z ryandesign@macports.org $
3
4PortSystem              1.0
5PortGroup               python25 1.0
6
7name                    py25-cssutils
8version                 0.9.5.1
9
10categories              python www
11maintainers             gmail.com:billitch
12description             CSS parser and library for Python
13long_description        A Python package to parse and build \
14                        CSS Cascading Style Sheets.
15
16platforms               darwin
17
18homepage                http://cthedot.de/cssutils/
19master_sites            http://cssutils.googlecode.com/files/
20distname                cssutils-${version}
21use_zip                 yes
22
23checksums               md5     b5ee33892918c6589017cfb318db8190 \
24                        sha1    bdf53ff8b0417c064daaa585389e99bed79e6bbf \
25                        rmd160  104246a4a07861236644c010f734b5265fdd797f
26
27post-destroot {
28        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
29        xinstall -m 644 -W ${worksrcpath} README.txt \
30                ${destroot}${prefix}/share/doc/${name}
31}