Ticket #45527: Portfile

File Portfile, 1.5 KB (added by nicholas.clark@…, 10 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: Portfile 126929 2014-10-17 20:17:55Z khindenburg@macports.org $
3
4PortSystem 1.0
5
6name            gmake
7version         4.1
8categories      devel
9maintainers     gmail.com:stuartwesterman openmaintainer
10description     GNU Make
11long_description \
12    Make is a tool which controls the generation of executables and     \
13    other non-source files of a program from the program's source files.\
14    Make gets its knowledge of how to build your program from a file    \
15    called the makefile, which lists each of the non-source files and   \
16    how to compute it from other files. When you write a program, you   \
17    should write a makefile for it, so that it is possible to use Make  \
18    to build and install the program.
19
20homepage        http://www.gnu.org/software/make/make.html
21license         GPL-3
22installs_libs   no
23platforms       darwin
24distname        make-${version}
25master_sites    gnu:make
26use_bzip2       yes
27
28checksums       rmd160  0f322d6c28867ea817f7d02c57e635c8ef556909 \
29                sha256  0bc7613389650ee6a24554b52572a272f7356164fd2c4132b0bcf13123e4fca5
30
31depends_lib     port:gettext port:libiconv
32configure.args  --program-prefix=g --without-guile
33
34variant guile description "Enable GNU Guile extensions" {
35    depends_lib-append  port:guile
36    configure.args  --program-prefix=g --with-guile
37}
38
39test.run        yes
40test.target     check