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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup silentbicycle ff 0.6-flag-features v |
---|
8 | name fuzzy-find |
---|
9 | version 0.6 |
---|
10 | categories sysutils |
---|
11 | platforms darwin |
---|
12 | license GPL-3 |
---|
13 | maintainers chunyang openmaintainer |
---|
14 | |
---|
15 | description command-line program that find files with fuzzy-completion |
---|
16 | |
---|
17 | long_description ${name} is a small command-line program that searches a \ |
---|
18 | directory tree with basic fuzzy-completion. |
---|
19 | |
---|
20 | checksums rmd160 9076e7cda947e99d5b31a04671f243469ffba9a2 \ |
---|
21 | sha256 29ea46dd5ef23ecf823b406b1a2fe015fd90c20de6d411118cc6e5fa99d47df6 |
---|
22 | |
---|
23 | use_configure no |
---|
24 | |
---|
25 | variant universal {} |
---|
26 | |
---|
27 | build.target ff |
---|
28 | build.args CC="${configure.cc} ${configure.optflags}" |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -m 0755 ${worksrcpath}/ff ${destroot}${prefix}/bin/ |
---|
32 | xinstall -m 0444 ${worksrcpath}/ff.1 ${destroot}${prefix}/share/man/man1/ |
---|
33 | } |
---|