Files
2019-12-07 13:20:59 -05:00

35 lines
858 B
Tcl

# -*- 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
PortSystem 1.0
PortGroup python 1.0
name py-scikits-module
version 0.1
maintainers {stromnov @stromnov} openmaintainer
description provides the files common to all scikits
long_description ${description}
platforms darwin
license BSD
homepage https://scikits.appspot.com
supported_archs noarch
python.versions 27 35 36
if {${name} ne ${subport}} {
# Nothing to see here, move along
distfiles
build {}
destroot {
set scikits_dir ${destroot}${python.pkgd}/scikits
file mkdir ${scikits_dir}
file copy ${filespath}/__init__.py ${scikits_dir}
}
}
livecheck.type none