Files
2024-03-23 22:04:08 -04:00

35 lines
861 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 any}
license BSD
homepage https://scikits.appspot.com
supported_archs noarch
python.versions 27
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