GLURaw is a raw Haskell binding for the GLU 1.3 OpenGL utility library. It is basically a 1:1 mapping of GLU's C API, intended as a basis for a nicer interface. ok sthen@ (will be hooked to the build during the ghc update)
27 lines
601 B
Makefile
27 lines
601 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/07/18 21:02:02 kili Exp $
|
|
|
|
COMMENT = raw Haskell binding for the OpenGL utility library
|
|
|
|
DISTNAME = GLURaw-1.3.0.0
|
|
CATEGORIES = graphics devel
|
|
HOMEPAGE = http://www.haskell.org/haskellwiki/Opengl
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ghc
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
MODGHC_SETUP_CONF_ARGS = \
|
|
--extra-include-dirs=${X11BASE}/include \
|
|
--extra-lib-dirs=${X11BASE}/lib
|
|
|
|
RUN_DEPENDS = graphics/hs-OpenGLRaw>=1.3,<1.4
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|