Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/gmake/Portfile

Revision 22363, 1.1 KB (checked in by pipping@…, 23 months ago)
  • add testsuite
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem 1.0
4name            gmake
5version         3.81
6categories      devel
7maintainers     waqar@macports.org
8description     GNU Make
9long_description \
10    Make is a tool which controls the generation of executables and     \
11    other non-source files of a program from the program's source files.\
12    Make gets its knowledge of how to build your program from a file    \
13    called the makefile, which lists each of the non-source files and   \
14    how to compute it from other files. When you write a program, you   \
15    should write a makefile for it, so that it is possible to use Make  \
16    to build and install the program. 
17
18homepage        http://www.gnu.org/software/make/make.html
19platforms       darwin
20distname        make-${version}
21master_sites    gnu:make
22checksums       sha1 41ed86d941b9c8025aee45db56c0283169dcab3d
23use_bzip2       yes
24configure.args  --program-prefix=g \
25                --infodir=${prefix}/share/info \
26                --mandir=${prefix}/share/man
27depends_lib     port:gettext port:libiconv
28
29test.run        yes
30test.target     check
Note: See TracBrowser for help on using the browser.