Ticket #21874: Portfile.2

File Portfile.2, 1.2 KB (added by mike@…, 15 years ago)

Portfile for version 1.5.2

Line 
1# $Id: Portfile 54501 2009-07-28 20:14:16Z toby@macports.org $
2
3PortSystem 1.0
4
5name            xrg
6version         1.5.2
7categories      aqua sysutils
8maintainers     nomaintainer
9description     XRG is an open source system monitor for Mac OS X.
10long_description \
11    XRG allows you to monitor CPU activity, memory \
12    usage, battery status, machine temperature, network \
13    activity, disk I/O, current weather, and stock \
14    market data. The goal of XRG is to be a functional \
15    system monitor that has a clean and flexible \
16    interface, so it doesn't intrude on the rest of your \
17    Mac experience. XRG is designed to take as little \
18    CPU time as possible while still showing detailed \
19    graphs on system usage.
20homepage        http://www.gauchosoft.com/
21master_sites    http://download.gauchosoft.com/${name}/
22distname        [string toupper ${name}]-src-${version}
23checksums       md5 c54e45eddb571d8e14271edd54f71f20
24platforms       darwin
25
26set appName     "XRG"
27
28use_configure   no
29
30build.type      pbx
31build.target
32build.args      -buildstyle Release -target XRG
33
34destroot {
35    set appPath ${destroot}${applications_dir}
36    xinstall -d -m 0755 ${appPath}
37    copy ${worksrcpath}/build/Release/${appName}.app ${appPath}/${appName}.app
38}