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 casey just 0.1.0 |
---|
8 | github.tarball_from releases |
---|
9 | |
---|
10 | categories sysutils |
---|
11 | platforms darwin |
---|
12 | license permissive |
---|
13 | |
---|
14 | maintainers rodarmor.com:casey |
---|
15 | description A handy way to store and run project-specific commands |
---|
16 | long_description just is a simple tool which allows you to easily save \ |
---|
17 | and run project specific commands. |
---|
18 | |
---|
19 | checksums rmd160 825dd68ca15fa37176c6d3a9be169c38754a2614 \ |
---|
20 | sha256 bd2fe5f2be94ab78b040b980e3b24b60747d11562b38bfeb6adf246eb2563b38 |
---|
21 | |
---|
22 | homepage https://github.com/casey/just |
---|
23 | depends_run port:gmake |
---|
24 | supported_archs noarch |
---|
25 | use_configure no |
---|
26 | build {} |
---|
27 | |
---|
28 | destroot { |
---|
29 | file copy ${worksrcpath}/just ${destroot}${prefix}/bin/just |
---|
30 | } |
---|