packages feed

xformat-0.1.2: Setup.lhs

#! /usr/bin/env runhaskell

\begin{code}
{-# OPTIONS -Wall #-}

-----------------------------------------------------------------------------
-- |
-- Module      :  Setup
-- Copyright   :  (c) 2009-2012 Sean Leather
-- License     :  BSD3
--
-- Maintainer  :  leather@cs.uu.nl
-----------------------------------------------------------------------------

module Main (main) where

import Distribution.Simple (defaultMain)

main :: IO ()
main = defaultMain

\end{code}