Ticket #59118: Portfile

File Portfile, 1.1 KB (added by srirangav (Sriranga Veeraraghavan), 5 years ago)

Portfile for searchfs

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           github 1.0
5
6github.setup        sveinbjornt searchfs 0.3.0
7github.tarball_from archive
8
9categories          sysutils
10platforms           darwin
11license             BSD
12
13maintainers         gmail.com:srirangav
14description         APFS / HFS+ search utility
15long_description    Command line tool to quickly search by filename on \
16                    APFS and HFS+ volumes using the file system catalog.
17
18homepage            https://github.com/sveinbjornt/searchfs
19checksums           rmd160  38aab99fa0e7fcf82fa8d2fc7753d58e05c97395 \
20                    sha256  b0073b865e66399fd1100efad8cb4f821db65ef5ae61d78ba7918c3c8b68fcb7 \
21                    size    56363
22use_zip             no
23use_configure       no
24
25destroot {
26        xinstall -m 755 ${worksrcpath}/${name} \
27                        ${destroot}/${prefix}/bin/${name}
28        xinstall -m 644 ${worksrcpath}/${name}.1 \
29                        ${destroot}/${prefix}/share/man/man1/${name}.1
30}
31