mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
54 lines
2.0 KiB
Tcl
54 lines
2.0 KiB
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 makefile 1.0
|
|
|
|
name ts
|
|
conflicts moreutils
|
|
version 1.0.4
|
|
revision 0
|
|
|
|
categories sysutils
|
|
maintainers {mps @Schamschula} openmaintainer
|
|
platforms darwin
|
|
license GPL-2+
|
|
|
|
description ts is a Unix batch system where the tasks spooled run one after \
|
|
the other.
|
|
|
|
long_description task spooler is a Unix batch system where the tasks spooled run \
|
|
one after the other. The amount of jobs to run at once can be set \
|
|
at any time. Each user in each system has his own job queue. The \
|
|
tasks are run in the correct context (that of enqueue) from any \
|
|
shell/process, and its output/results can be easily watched. \
|
|
It is very useful when you know that your commands depend on a \
|
|
lot of RAM, a lot of disk use, give a lot of output, or for \
|
|
whatever reason it's better not to run them all at the same \
|
|
time, while you want to keep your resources busy for maximum \
|
|
benfit. Its interface allows using it easily in scripts.
|
|
|
|
homepage http://vicerveza.homeunix.net/~viric/soft/ts/
|
|
master_sites ${homepage}
|
|
|
|
checksums rmd160 04259fed9e34d0ea569f4dc93ff255d9d9eb2803 \
|
|
sha256 b1ab3db52dca36af3699178b8d0e936a30107f8d5c86a974163c580823b01790 \
|
|
size 69645
|
|
|
|
patchfiles patch-Makefile.diff
|
|
|
|
destroot.args PREFIX=${prefix}
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} \
|
|
Changelog \
|
|
COPYING \
|
|
OBJECTIVES \
|
|
TRICKS \
|
|
${destroot}${docdir}
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.regex ${name}-(\[0-9.\]+)${extract.suffix}
|