A simple IRC bot written in Haskell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
set -x #echo on
|
|
|
|
cabal sandbox init
|
|
|
|
|
|
|
|
cd hask-irc-core
|
|
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd hask-irc-handlers
|
|
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
|
|
cabal sandbox add-source ../hask-irc-core/
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd hask-irc-runner
|
|
|
|
cabal sandbox init --sandbox=../.cabal-sandbox
|
|
|
|
cabal sandbox add-source ../hask-irc-core/
|
|
|
|
cabal sandbox add-source ../hask-irc-handlers/
|
|
|
|
cd ..
|