Files

45 lines
1.8 KiB
Tcl
Raw Permalink Normal View History

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
PortSystem 1.0
PortGroup python 1.0
PortGroup deprecated 1.0
2005-10-15 14:44:50 +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
platforms darwin
license public-domain
maintainers nomaintainer
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
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
deprecated.upstream_support no
python.versions 27 35 36 37
if {${name} ne ${subport}} {
depends_build-append port:py${python.version}-setuptools
2019-02-07 16:01:57 -05:00
post-destroot {
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}
file copy ${worksrcpath}/${subdir}/sample \
${destroot}${prefix}/share/doc/${subport}/${subdir}/sample
file copy ${worksrcpath}/${subdir}/doc \
${destroot}${prefix}/share/doc/${subport}/${subdir}/doc
}
livecheck.type none
2007-04-11 04:19:26 +00:00
}