1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name hfspax |
---|
5 | version 1fc4 |
---|
6 | categories sysutils |
---|
7 | maintainers waqar@opendarwin.org |
---|
8 | description standard pax with hfs support. |
---|
9 | homepage http://homepage.mac.com/howardoakley |
---|
10 | platforms darwin |
---|
11 | long_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. |
---|
16 | master_sites http://homepage.mac.com/howardoakley/.cv/howardoakley/Public/ |
---|
17 | extract.sufx .gz |
---|
18 | distname ${name}${version}.tar.gz-link |
---|
19 | checksums md5 6ea9d754584fe718f3ed643b1e070d1b |
---|
20 | worksrcdir ${name}MasterF |
---|
21 | configure { } |
---|
22 | build { } |
---|
23 | install { |
---|
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 | |
---|