diff options
author | pgj <pgj@FreeBSD.org> | 2016-02-20 04:43:06 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2016-02-20 04:43:06 +0800 |
commit | f762e3a5124dc7387d46d36c5802c06e04457915 (patch) | |
tree | 1c69f95835fac1f6151610d9bfa8537e9356129a /games/hs-scroll | |
parent | 467de8b3a8dea1a7144a52ae80b0a9ea887ee2a3 (diff) | |
download | freebsd-ports-gnome-f762e3a5124dc7387d46d36c5802c06e04457915.tar.gz freebsd-ports-gnome-f762e3a5124dc7387d46d36c5802c06e04457915.tar.zst freebsd-ports-gnome-f762e3a5124dc7387d46d36c5802c06e04457915.zip |
In scroll, you're a bookworm that's stuck on a scroll. You have to dodge
between words and use spells to make your way down the page as the scroll
is read. Go too slow and you'll get wound up in the scroll and crushed.
WWW: http://joeyh.name/code/scroll/
PR: 200112
Submitted by: Nikolai Lifanov <lifanov@mail.lifanov.com>
Obtained from: FreeBSD Haskell
Diffstat (limited to 'games/hs-scroll')
-rw-r--r-- | games/hs-scroll/Makefile | 22 | ||||
-rw-r--r-- | games/hs-scroll/distinfo | 2 | ||||
-rw-r--r-- | games/hs-scroll/pkg-descr | 5 |
3 files changed, 29 insertions, 0 deletions
diff --git a/games/hs-scroll/Makefile b/games/hs-scroll/Makefile new file mode 100644 index 000000000000..855e4ddf5cb2 --- /dev/null +++ b/games/hs-scroll/Makefile @@ -0,0 +1,22 @@ +# Created by: Nikolai Lifanov <lifanov@mail.lifanov.com> +# $FreeBSD$ + +PORTNAME= scroll +PORTVERSION= 1.20151219 +CATEGORIES= games haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= A roguelike game + +LICENSE= GPLv2 + +PKGNAMEPREFIX= + +USE_CABAL= IfElse case-insensitive data-default monad-loops mtl \ + optparse-applicative ncurses random text vector + +STANDALONE= yes +EXECUTABLE= scroll + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/games/hs-scroll/distinfo b/games/hs-scroll/distinfo new file mode 100644 index 000000000000..ebc88c27979a --- /dev/null +++ b/games/hs-scroll/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/scroll-1.20151219.tar.gz) = 4f91c20e645ee715c9d3549fffffcc58943bee4fb3ba2e622e0189ccb70dd050 +SIZE (cabal/scroll-1.20151219.tar.gz) = 265861 diff --git a/games/hs-scroll/pkg-descr b/games/hs-scroll/pkg-descr new file mode 100644 index 000000000000..73a32766c6a7 --- /dev/null +++ b/games/hs-scroll/pkg-descr @@ -0,0 +1,5 @@ +In scroll, you're a bookworm that's stuck on a scroll. You have to dodge +between words and use spells to make your way down the page as the scroll +is read. Go too slow and you'll get wound up in the scroll and crushed. + +WWW: http://joeyh.name/code/scroll/ |