45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.11 2013/07/19 07:05:01 kili Exp $
|
|
|
|
COMMENT = Haskell API search engine
|
|
|
|
DISTNAME = hoogle-4.2.16
|
|
CATEGORIES = devel
|
|
HOMEPAGE = http://www.haskell.org/hoogle/
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# GPLv2, some files are MIT and/or BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ghc converters/libiconv
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
WANTLIB = c m pthread util
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = devel/hs-blaze-builder>=0.2 \
|
|
devel/hs-case-insensitive>=0.2 \
|
|
devel/hs-cmdargs>=0.7 \
|
|
devel/hs-conduit>=0.2 \
|
|
devel/hs-parsec>=2.1 \
|
|
devel/hs-random \
|
|
devel/hs-safe \
|
|
devel/hs-transformers>=0.2 \
|
|
devel/hs-uniplate>=1.6 \
|
|
lang/hs-haskell-src-exts>=1.12,<1.14 \
|
|
textproc/hs-tagsoup>=0.11 \
|
|
www/hs-http-types>=0.7 \
|
|
www/hs-wai>=1.1 \
|
|
www/hs-warp>=1.1
|
|
|
|
HOOGLEDB = /var/db/hoogle
|
|
SUBST_VARS = HOOGLEDB
|
|
|
|
# Quick hack until I figure how to do this properly with cabal:
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${WRKINST}${HOOGLEDB}
|
|
ln -s ${HOOGLEDB} ${PREFIX}/share/hs-${DISTNAME}/databases
|
|
|
|
.include <bsd.port.mk>
|