Ticket #2483: Portfile

File Portfile, 1.1 KB (added by dem5302@…, 20 years ago)

updated Portfile

Line 
1# $Id: Portfile,v 1.1 2004/12/02 19:24:57 gwright Exp $
2PortSystem        1.0
3name              ProofGeneral
4version           3.5
5categories        math
6maintainers       dem5302@cs.rit.edu
7description       A xemacs mode for interactive prooving
8long_description  The aim of Proof General is to provide powerful \
9                  and configurable interfaces which help user-interaction \
10                  with proof assistants. Proof General targets power users \
11                  rather than novices, but is designed to be useful to \
12                  both. Proof General leads to an environment for \
13                  serious proof engineering of interactively-constructed \
14                  proofs.
15homepage          http://proofgeneral.inf.ed.ac.uk/
16master_sites      ${homepage}/releases/
17checksums         md5 2114f0ead1cb0b4c6be992aa7bf1529c
18depends_lib       bin:xemacs:xemacs
19
20configure {
21    reinplace s|DEST_PREFIX=/usr|DEST_PREFIX=${prefix}| ${workpath}/${worksrcdir}/Makefile
22    reinplace s|PREFIX=/usr|PREFIX=${destroot}${prefix}| ${workpath}/${worksrcdir}/Makefile
23}
24
25pre-build {
26    cd ${workpath}/${worksrcdir}
27    system "make clean"
28}