Ticket #50540: Portfile

File Portfile, 990 bytes (added by casey (Casey Rodarmor), 8 years ago)

Portfile

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