Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/aqua/AppKiDo/Portfile

Revision 34081, 1.2 KB (checked in by eridius@…, 11 months ago)

AppKiDo: Bump to 0.971

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem 1.0
4name            AppKiDo
5version         0.971
6categories      aqua devel
7platforms       darwin
8maintainers     eridius@macports.org
9description     Provides a powerful interface to Apple's Cocoa documentation
10long_description        \
11        AppKiDo is a free reference tool for Cocoa Objective-C \
12        programmers. It parses the header files and HTML \
13        documentation files provided by Developer Tools and \
14        presents the results in a powerful interface.
15homepage        http://homepage.mac.com/aglee/downloads/
16master_sites    ${homepage}
17distname        ${name}-${version}-src
18extract.suffix  .tgz
19worksrcdir      ${name}
20checksums       md5  6c4ec2a75f8552120e5a9ff582d9a10f \
21                sha1 e88e80faa6f140a2142a2f4dbe9be0de81b5472c
22
23livecheck.check regex
24livecheck.url   http://homepage.mac.com/aglee/downloads/appkido.html
25livecheck.regex ">download version (.*?)<"
26
27use_configure   no
28build.type      pbx
29build.target    -target AppKiDo
30build.args      -buildstyle Deployment build SYMROOT=build/ OBJROOT=build/
31
32set xcodebuilddir               build
33platform darwin 8 {
34        if {$xcodeversion == "2.1"} {
35                set xcodebuilddir       build/Deployment
36        }
37}
38
39destroot        {
40        xinstall -m 755 -d ${destroot}/Applications/MacPorts/
41        file copy ${worksrcpath}/${xcodebuilddir}/AppKiDo.app \
42                ${destroot}/Applications/MacPorts
43}
Note: See TracBrowser for help on using the browser.