mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
72aec0acb1
- Update devel/hs-blaze-builder-enumerator to 0.2.0.1 - Update devel/hs-darcs to 2.5.2 - Update devel/hs-hashed-storage to 0.5.7 - Update devel/hs-haskeline to 0.6.4.0 - Update devel/hs-haskell-src-exts to 1.11.1 - Update devel/hs-hoogle to 4.2.5 - Update devel/hs-test-framework to 0.4.0 - Update devel/hs-test-framework-quickcheck2 to 0.2.10 - Update www/hs-wai to 0.4.0 - Update www/hs-warp to 0.4.0.1 - Bump PORTREVISION of devel/cvs2darcs, devel/hs-test-framework-hunit, devel/hs-uuagc, math/hs-Agda, math/hs-Agda-executable Obtained from: FreeBSD Haskell
37 lines
840 B
Makefile
37 lines
840 B
Makefile
# New ports collection makefile for: hs-hashed-storage
|
|
# Date created: May 14, 2010
|
|
# Whom: Gabor Pali <pgj@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hashed-storage
|
|
PORTVERSION= 0.5.7
|
|
CATEGORIES= devel haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Hashed file storage support code
|
|
|
|
LICENSE= BSD
|
|
|
|
CABAL_SETUP= Setup.hs
|
|
USE_CABAL= binary dataenc mmap>=0.5 mtl zlib
|
|
|
|
OPTIONS= TEST "Build tests" off
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_TEST)
|
|
CONFIGURE_ARGS+= --flags="test"
|
|
USE_CABAL+= test-framework test-framework-hunit \
|
|
test-framework-quickcheck2 HUnit \
|
|
QuickCheck>=2.3 zip-archive
|
|
EXECUTABLE+= hashed-storage-test
|
|
.else
|
|
CONFIGURE_ARGS+= --flags="-test"
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|