a13692fa43
React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values: declarative events and signals.
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2012/05/29 14:45:14 wiz Exp $
|
|
|
|
PKGNAME= ocaml-${DISTNAME}
|
|
DISTNAME= react-0.9.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://erratique.ch/software/react/releases/
|
|
EXTRACT_SUFX= .tbz
|
|
|
|
MAINTAINER= jaapb@kerguelen.org
|
|
HOMEPAGE= http://erratique.ch/software/react
|
|
COMMENT= OCaml module for functional reactive programming
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix "${PREFIX}" --destdir "${DESTDIR}"
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
SUBST_CLASSES+= destdir
|
|
SUBST_STAGE.destdir= post-configure
|
|
SUBST_MESSAGE.destdir= Changing install location to DESTDIR
|
|
SUBST_FILES.destdir= setup.ml
|
|
SUBST_SED.destdir= -e 's,"install" :: findlib_name,"install" :: "-destdir ${DESTDIR}${PREFIX}/lib/ocaml/site-lib" :: "-ldconf /dev/null" :: findlib_name,'
|
|
|
|
DEPENDS+= ocaml-findlib-[0-9]*:../../devel/ocaml-findlib
|
|
|
|
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \
|
|
(${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "x86_64")
|
|
PLIST_SRC+= PLIST.opt
|
|
BUILD_TARGET= module
|
|
INSTALL_TARGET= install
|
|
.else
|
|
BUILD_TARGET= module-byte
|
|
INSTALL_TARGET= install-byte
|
|
.endif
|
|
PLIST_SRC+= PLIST
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ocaml setup.ml -configure ${CONFIGURE_ARGS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ocaml setup.ml -build
|
|
|
|
pre-install:
|
|
${RM} -rf ${DESTDIR}/${PREFIX}/lib/ocaml/site-lib/react
|
|
${MKDIR} ${DESTDIR}/${PREFIX}/lib/ocaml/site-lib
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ocaml setup.ml -install
|
|
|
|
.include "../../lang/ocaml/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|