Ticket #3016: Portfile

File Portfile, 820 bytes (added by drernie@…, 19 years ago)

The portfile

Line 
1# $Id: Portfile,v 1.0 2005/04/30 16:00:00 drernie Exp $
2
3PortSystem 1.0
4
5name                    xattr
6version                 0.1
7categories              sysutils
8platforms               darwin
9maintainers             drernie@opendarwin.org
10description             Display and edit extended attributes on Darwin 8
11long_description        A simple utility to set, get, copy, delete and list\
12 the new extended attributes enabled by Mac OS X 10.4 "Tiger" (Darwin 8)
13
14
15homepage                http://arstechnica.com/reviews/os/macosx-10.4.ars/7
16master_sites            http://dev.bignerdranch.com/public/bnr/
17distname                eXttra
18checksums               md5 216198e9c79d0a9b5e1ce4a783fefc75
19use_zip                 yes
20
21#worksrcdir
22
23use_configure   no
24
25build.type              pbx
26build.args              -buildstyle Deployment
27build.target            { -project "eXttra.xcode" -target "xattr" }
28
29destroot {
30  xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin
31}