Ticket #50579: Portfile

File Portfile, 992 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.2.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  d57a533c7386740f653c6653983ae7b123cf7d99 \
20                    sha256  7e36c5a8ea3bb4d1f2d8e22ec2df19ff6e61da27edaae56265905e1c26f8dcda
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}