Ticket #2180: Portfile

File Portfile, 974 bytes (added by riccardo@…, 20 years ago)

portfile

Line 
1# $Id: Portfile,v 1.0 2004/08/28 11:32:25 xxx Exp $
2
3PortSystem 1.0
4
5name                    wtf-x
6version                 0.1
7categories              aqua
8maintainers             riccardo@andreoli.net
9platforms               darwin
10description     A MacOSX programm to translate common Internet acronyms
11long_description        WTF-X is a Mac OS X programm to translate common Internet \
12                                        acronyms. It's a port of BSD's commandline tool wtf, but \
13                                        unlike this tool it's running as a service in OS X and \
14                                        also offers a GUI to browse through all the acronyms and \
15                                        add new ones.
16homepage                http://wtf-x.sourceforge.net
17
18master_sites    sourceforge:wtf-x
19use_zip                 yes
20distname                ${name}-release-${version}-source
21checksums               md5 101f0798f34f0c9f6a5c9ef8b179192d
22
23use_configure   no
24
25worksrcdir              wtf-x
26
27build.type              pbx
28build.target
29build.args              -buildstyle Deployment
30
31destroot {
32        set appPath ${destroot}/Applications/DarwinPorts
33        file mkdir ${appPath}
34        file copy ${worksrcpath}/build/WTF-X.app ${appPath}/WTF-X.app
35}