mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
34 lines
788 B
Makefile
34 lines
788 B
Makefile
# Created by: Phillip Neumann <pneumann@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fsharp
|
|
PORTVERSION= 3.0.25
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= https://nodeload.github.com/fsharp/fsharp/tar.gz/ \
|
|
CRITICAL
|
|
DISTFILES= ${PORTVERSION}
|
|
|
|
MAINTAINER= mono@FreeBSD.org
|
|
COMMENT= Functional and object-oriented language for the .NET platform
|
|
LICENSE= AL2
|
|
|
|
BUILD_DEPENDS= mono>=3.0:${PORTSDIR}/lang/mono
|
|
RUN_DEPENDS= mono>=3.0:${PORTSDIR}/lang/mono
|
|
|
|
USES= pkgconfig
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
# This is currently a workaround for the differences between pkg_* and pkg(8).
|
|
.if defined(WITH_PKGNG)
|
|
PLIST_SUB+= LB="${LOCALBASE}/"
|
|
.else
|
|
PLIST_SUB+= LB=""
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
|
|
.include <bsd.port.mk>
|