Ticket #17265: Portfile

File Portfile, 874 bytes (added by mike@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem              1.0
4
5name                    md5sha1sum
6version                 0.9.5
7categories              sysutils
8maintainers             flyn
9description             Hash utilites
10long_description        This toolset provides md5sum, sha1sum, and ripemd160sum. They are intended to be drop in replacements for the tools from GNU textutils. Since installing textutils is somewhat excessive for just those two utilities, these are meant to be the more compact and easier to install replacements.
11homepage                http://www.microbrew.org/tools/md5sha1sum
12platforms               darwin
13master_sites            http://www.microbrew.org/tools/md5sha1sum
14
15checksums               sha1 84a46bfd2b49daa0a601a9c55b7d87c27e19ef87
16
17destroot {
18        xinstall -m 755 -d ${destroot}${prefix}/bin
19        xinstall -m 755 ${worksrcpath}/md5sum ${destroot}${prefix}/bin
20        xinstall -m 755 ${worksrcpath}/sha1sum ${destroot}${prefix}/bin
21        xinstall -m 755 ${worksrcpath}/ripemd160sum ${destroot}${prefix}/bin
22}