Ticket #511: Portfile

File Portfile, 1.2 KB (added by wmalik@…, 21 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4name            hfspax
5version         1fc4
6categories      sysutils
7maintainers     waqar@opendarwin.org
8description     standard pax with hfs support.
9homepage        http://homepage.mac.com/howardoakley
10platforms       darwin
11long_description        hfspax is a modified (alright, hacked!) version of \
12                the standard Mac OS X  and UNIX tool, pax. It \
13                addresses one of the few significant omissions from \
14                Mac OS X - the ability to perform proper backups, \
15                and to restore from them.
16master_sites    http://homepage.mac.com/howardoakley/.cv/howardoakley/Public/
17extract.sufx    .gz
18distname        ${name}${version}.tar.gz-link
19checksums       md5 6ea9d754584fe718f3ed643b1e070d1b
20worksrcdir      ${name}MasterF
21configure       { }
22build           { }
23install         {
24                  system "cd ${worksrcpath} && install -m 555 \
25                          ${name} ${destroot}${prefix}/bin/"
26                  system "cd ${worksrcpath} && install -m 444 \
27                          ${name}.1 ${destroot}${prefix}/man/man1/"
28                  system "cd ${worksrcpath} && ditto -v DropArchive.app \
29                         ${destroot}/Applications/Utilities/DropArchive.app"
30                  system "cd ${worksrcpath} && ditto -v DropUnarchive.app \
31                         ${destroot}/Applications/Utilities/DropUnarchive.app"
32                }
33