Ticket #38111: Portfile

File Portfile, 1.4 KB (added by cooljeanius (Eric Gallager), 11 years ago)
Line 
1# -*- 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
2# $Id: Portfile 78632 2011-05-14 22:50:58Z ryandesign@macports.org $
3
4PortSystem               1.0
5PortGroup                github 1.0
6
7github.setup             cooljeanius stress 1.0.4
8revision                 0
9platforms                darwin
10categories               sysutils benchmarks
11maintainers              gwmail.gwu.edu:egall openmaintainer
12description              ${name} is a deliberately simple workload generator for POSIX systems.
13license                  GPL-2+
14long_description         ${description} It imposes a configurable amount of \
15                         CPU, memory, I/O, and disk stress on the system.
16
17homepage                 http://weather.ou.edu/%7Eapw/projects/stress/
18
19fetch.type               git
20git.url                  git://github.com/cooljeanius/stress-1.0.4.git
21
22variant autoreconf description {Regenerates configure script before building. \
23                                Also pulls in extra dependencies.} {
24    depends_build-append port:autoconf-archive \
25                         port:gawk \
26                         port:grep \
27                         lib:librpm:rpm \
28                         port:texinfo \
29                         port:pkgconfig
30    use_autoreconf       yes
31    configure.args-append --disable-silent-rules
32}
33
34livecheck.type           none