Popularity
3.6
Declining
Activity
3.6
-
7
3
0

Monthly Downloads: 5
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Game    
Latest version: v0.1

spanout alternatives and similar packages

Based on the "Game" category.
Alternatively, view spanout alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of spanout or a related project?

Add another 'Game' Package

README

spanout Hackage

A breakout clone written in Haskell using the FRP library netwire and vector graphics library gloss.

[Screenshot](screenshot.png?raw=true)

Usage

Hit all the bricks and don't let the ball fall off.

  • Mouse โ€“ bat control
  • Space โ€“ skip current level

Compiling

You need GHC and Cabal in order to compile spanout. Cabal 1.18+ and an updated package list (cabal update) are recommended.

Building with local package installs only:

git clone https://github.com/vtan/spanout.git
cd spanout
cabal sandbox init
cabal install --only-dependencies
cabal configure
cabal build
cabal run

Building without a sandbox โ€“ pollutes global or user package database:

git clone https://github.com/vtan/spanout.git
cd spanout
cabal install --only-dependencies
cabal configure
cabal build
cabal run