blob: 5024f67f4f642bd059f1795aa4d3f45d1197e976 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: hmake
# Date created: 27 November 2001
# Whom: mwest@uct.ac.za
#
# $FreeBSD$
#
PORTNAME= hmake
PORTVERSION= 2.03
CATEGORIES= devel
MASTER_SITES= ftp://ftp.cs.york.ac.uk/pub/haskell/hmake/
MAINTAINER= mwest@uct.ac.za
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc
BROKEN= "Does not build"
HAS_CONFIGURE= YES
CONFIGURE_ARGS+= --prefix=${PREFIX}
USE_GMAKE= YES
# cheat a bit, otherwise LIBDIR gets clobbered
do-install:
(cd ${WRKSRC} && ./configure --install)
MAN1= hmake.1
.include <bsd.port.mk>
|