Ticket #3879: Portfile

File Portfile, 780 bytes (added by pierre@…, 19 years ago)

this is the Portfile for SharedMenusCocoa-0.3.

Line 
1# $Id: $
2
3PortSystem 1.0
4
5name                    SharedMenusCocoa
6version                 0.3
7categories              aqua
8platforms               darwin
9maintainers             pierre@queinnec.org
10description             Adds support for Shared Menus in Cocoa applications
11
12homepage                http://www.url-manager.com/sme.html
13#master_sites           ftp://ftp.url-manager.com/pub/
14master_sites            http://www.queinnec.org/ports/
15distfiles               ${name}.tar.gz
16checksums               md5 a062ce763050b4127b5127db0d179dd5
17worksrcdir              ${name}
18
19use_configure           no
20build.type              pbx
21build.target            -buildstyle Deployment
22
23set xcodebuilddir       build
24platform darwin 8 {
25        if {$xcodeversion == "2.1"} {
26                set xcodebuilddir       build/Deployment
27        }
28}
29
30destroot {
31        xinstall -d -m 0755 ${destroot}/Library/Frameworks
32        file copy ${worksrcpath}/build/${name}.framework \
33               ${destroot}/Library/Frameworks
34}