Joe Edmonds Blog
   

Email

Subscribe
RSS



See more of joe's picks at ThisNext.
Shopcast
powered by
ThisNext


       
Fri, 26 May 2006

Building HAppS in Ubuntu Dapper

Took me a while to figure out how to build HApps under ubuntu dapper. Here's what I did:

# build fps (seems to be no ubuntu package for this)

darcs get http://www.cse.unsw.edu.au/~dons/code/fps
cd fps
# HAppS calls breakFirst:
darcs obliterate --from-patch "we kill breakFirst/breakLast"
runhaskell Setup.hs configure --ghc --prefix=/usr/local
runhaskell Setup.hs build
sudo runhaskell Setup.hs install

# build HApps

darcs get --partial http://happs.org/HAppS
cd HAppS
darcs obliterate --from-patch "we kill breakFirst/breakLast"
runhaskell Setup.hs configure --ghc --prefix=/usr/local
runhaskell Setup.hs build
sudo runhaskell Setup.hs install

[] permanent link