2011-09-27 21:05:11 +00:00
|
|
|
# -*- 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
|
2005-10-15 14:44:50 +00:00
|
|
|
|
2012-05-24 17:29:52 +00:00
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup python 1.0
|
2019-10-18 11:39:55 -04:00
|
|
|
PortGroup deprecated 1.0
|
2005-10-15 14:44:50 +00:00
|
|
|
|
2012-05-24 17:29:52 +00:00
|
|
|
name py-appscript
|
2019-04-19 08:35:04 -04:00
|
|
|
version 1.1.0
|
2019-02-07 16:01:57 -05:00
|
|
|
revision 0
|
2019-10-18 11:39:55 -04:00
|
|
|
|
2012-05-24 17:29:52 +00:00
|
|
|
platforms darwin
|
2014-11-17 00:06:32 +00:00
|
|
|
license public-domain
|
2018-05-28 19:20:34 -07:00
|
|
|
maintainers nomaintainer
|
2012-05-24 17:29:52 +00:00
|
|
|
description High-level application scripting package for Python
|
|
|
|
|
long_description Appscript is a high-level, user-friendly MacPython to \
|
|
|
|
|
Apple event bridge that allows you to control scriptable \
|
|
|
|
|
Mac OS X applications using ordinary Python scripts. \
|
|
|
|
|
Appscript makes MacPython a serious alternative to Apple's \
|
|
|
|
|
own AppleScript language for automating your Mac.
|
2005-10-15 14:44:50 +00:00
|
|
|
|
2012-05-24 17:29:52 +00:00
|
|
|
homepage http://appscript.sourceforge.net/
|
2019-02-07 16:01:57 -05:00
|
|
|
master_sites pypi:a/${python.rootname}
|
|
|
|
|
distname ${python.rootname}-${version}
|
2005-10-15 14:44:50 +00:00
|
|
|
|
2019-04-19 08:35:04 -04:00
|
|
|
checksums rmd160 fc2e459c4a2b7135f71f4c7a95dcd29b7c6692a1 \
|
|
|
|
|
sha256 35c2ba2894348413a29daa19008d5f1c349a832206eccc97ded50cee3ad852e5 \
|
|
|
|
|
size 583045
|
2007-04-11 04:19:26 +00:00
|
|
|
|
2019-10-18 11:39:55 -04:00
|
|
|
deprecated.upstream_support no
|
|
|
|
|
python.versions 27 35 36 37
|
2009-02-11 22:12:15 +00:00
|
|
|
|
2013-12-05 08:44:51 +00:00
|
|
|
if {${name} ne ${subport}} {
|
2014-11-17 00:06:32 +00:00
|
|
|
depends_build-append port:py${python.version}-setuptools
|
2019-02-07 16:01:57 -05:00
|
|
|
|
2012-05-24 17:29:52 +00:00
|
|
|
post-destroot {
|
2014-11-17 00:06:32 +00:00
|
|
|
set subdir appscript_[string index ${python.version} 0]x
|
2019-02-07 16:01:57 -05:00
|
|
|
xinstall -m 0755 -d ${destroot}${prefix}/share/doc/${subport}/${subdir}
|
2014-11-17 00:06:32 +00:00
|
|
|
file copy ${worksrcpath}/${subdir}/sample \
|
|
|
|
|
${destroot}${prefix}/share/doc/${subport}/${subdir}/sample
|
|
|
|
|
file copy ${worksrcpath}/${subdir}/doc \
|
|
|
|
|
${destroot}${prefix}/share/doc/${subport}/${subdir}/doc
|
2011-09-10 17:57:34 +00:00
|
|
|
}
|
2014-11-17 00:06:32 +00:00
|
|
|
livecheck.type none
|
2007-04-11 04:19:26 +00:00
|
|
|
}
|