1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python25 1.0 |
---|
6 | |
---|
7 | name py25-appscript |
---|
8 | version 0.19.0 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers arsptr@internode.on.net |
---|
12 | description High-level application scripting package for Python |
---|
13 | long_description Appscript is a high-level, user-friendly MacPython to \ |
---|
14 | Apple event bridge that allows you to control scriptable \ |
---|
15 | Mac OS X applications using ordinary Python scripts. \ |
---|
16 | Appscript makes MacPython a serious alternative to Apple's \ |
---|
17 | own AppleScript language for automating your Mac. |
---|
18 | |
---|
19 | homepage http://appscript.sourceforge.net/ |
---|
20 | master_sites http://pypi.python.org/packages/source/a/appscript/ |
---|
21 | distname appscript-${version} |
---|
22 | |
---|
23 | depends_lib-append port:py25-setuptools |
---|
24 | |
---|
25 | checksums md5 d234c1f1b92290da9eb866f78f9a7343 \ |
---|
26 | sha1 ef4352e6cab42bf9f64fd5680a49d1a5acd8ffe3 \ |
---|
27 | rmd160 7c68a3fdfb5fac496a97e05397890477b5267990 |
---|
28 | |
---|
29 | post-destroot { |
---|
30 | file copy ${worksrcpath}/sample ${destroot}${prefix}/share/doc/${name}/sample |
---|
31 | file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name}/doc |
---|
32 | } |
---|