Ticket #49281: Portfile

File Portfile, 1.1 KB (added by Bo98 (Bo Anderson), 9 years ago)
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
7name                premake5
8github.setup        premake premake-core 5.0.0-alpha6 v
9
10categories          devel
11maintainers         nomaintainer
12description         Premake is a build script generator.
13long_description    Premake is a build script generator. Describe your \
14                    project using the full-featured Lua scripting language \
15                    and use premake to create input files for various IDEs \
16                    and GnuMake
17
18platforms           darwin
19license             bsd
20
21homepage            http://premake.github.io/
22
23github.tarball_from releases
24distname            premake-${version}-macosx
25checksums           rmd160   7be15620a52450b2186c1e160777175cfbe9a8d0 \
26                    sha256   7d0c386172d5bedd9040efe67c97c4bd3942da63b407db22f11960d3e71407f6
27use_configure       no
28
29build {}
30
31extract.mkdir       yes
32
33destroot        {
34                copy ${worksrcpath}/premake5 ${destroot}${prefix}/bin/
35}