1 | # $Id: Portfile 54501 2009-07-28 20:14:16Z toby@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name xrg |
---|
6 | version 1.5.2 |
---|
7 | categories aqua sysutils |
---|
8 | maintainers nomaintainer |
---|
9 | description XRG is an open source system monitor for Mac OS X. |
---|
10 | long_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. |
---|
20 | homepage http://www.gauchosoft.com/ |
---|
21 | master_sites http://download.gauchosoft.com/${name}/ |
---|
22 | distname [string toupper ${name}]-src-${version} |
---|
23 | checksums md5 c54e45eddb571d8e14271edd54f71f20 |
---|
24 | platforms darwin |
---|
25 | |
---|
26 | set appName "XRG" |
---|
27 | |
---|
28 | use_configure no |
---|
29 | |
---|
30 | build.type pbx |
---|
31 | build.target |
---|
32 | build.args -buildstyle Release -target XRG |
---|
33 | |
---|
34 | destroot { |
---|
35 | set appPath ${destroot}${applications_dir} |
---|
36 | xinstall -d -m 0755 ${appPath} |
---|
37 | copy ${worksrcpath}/build/Release/${appName}.app ${appPath}/${appName}.app |
---|
38 | } |
---|