Revision: 71081 http://trac.macports.org/changeset/71081 Author: ryandesign@macports.org Date: 2010-08-31 15:08:39 -0700 (Tue, 31 Aug 2010) Log Message: ----------- time-track-cli: new port, version 1.2; see #26277 Added Paths: ----------- trunk/dports/office/time-track-cli/ trunk/dports/office/time-track-cli/Portfile Added: trunk/dports/office/time-track-cli/Portfile =================================================================== --- trunk/dports/office/time-track-cli/Portfile (rev 0) +++ trunk/dports/office/time-track-cli/Portfile 2010-08-31 22:08:39 UTC (rev 71081) @@ -0,0 +1,53 @@ +# -*- 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 +# $Id$ + +PortSystem 1.0 + +name time-track-cli +version 1.2 +categories office tcl +platforms darwin +maintainers the-blair.com:blair +supported_archs noarch + +description Simple time tracking application using the CLI, in the spirit \ + of todo.txt. + +long_description In the spirit of TODO.TXT, this little Tcl script will handle \ + tracking how much time you spend on tasks throughout the day. \ + All records are stored in a plain text file so you're not \ + dependent on anyone else's format. + +homepage http://github.com/dongola7/Time-Track-CLI +master_sites http://the-blair.com/sw/time-track-cli + +checksums md5 ea6237ad43af401536322d2403ea1880 \ + sha1 7c0594cdea36c8485ac008f4db6269e887c09ae1 \ + rmd160 735e241d57a7814b7ac7f9b04151aec8795b71b9 + +depends_lib port:tcl \ + port:tcllib + +extract.mkdir yes + +use_configure no + +build {} + +destroot { + # Install time_track.tcl + xinstall -m 755 ${worksrcpath}/time_track.tcl ${destroot}${prefix}/bin + + # Install example hooks + file mkdir ${destroot}${prefix}/share/doc/${name}/hooks + foreach hook_file [glob ${worksrcpath}/*.sample] { + file copy $hook_file ${destroot}${prefix}/share/doc/${name}/hooks + } + + # Install documentation + file copy ${worksrcpath}/README.html ${destroot}${prefix}/share/doc/${name} +} + +livecheck.type regex +livecheck.url [lindex ${master_sites} 0] +livecheck.regex ${name}-(\[0-9.\]+)\\.tar Property changes on: trunk/dports/office/time-track-cli/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native
participants (1)
-
ryandesign@macports.org