module Paths_EtaMOO ( version, getBinDir, getLibDir, getDataDir, getLibexecDir, getDataFileName, getSysconfDir ) where import qualified Control.Exception as Exception import Data.Version (Version(..)) import System.Environment (getEnv) import Prelude catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a catchIO = Exception.catch version :: Version version = Version [0,3,0,0] [] bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath bindir = "/net/home/rob/Developer/Projects/MOO/EtaMOO/.cabal-sandbox/bin" libdir = "/net/home/rob/Developer/Projects/MOO/EtaMOO/.cabal-sandbox/lib/x86_64-linux-ghc-7.10.3/EtaMOO-0.3.0.0-KYDpjQvSAz2CtKNfR7Pv2Q" datadir = "/net/home/rob/Developer/Projects/MOO/EtaMOO/.cabal-sandbox/share/x86_64-linux-ghc-7.10.3/EtaMOO-0.3.0.0" libexecdir = "/net/home/rob/Developer/Projects/MOO/EtaMOO/.cabal-sandbox/libexec" sysconfdir = "/net/home/rob/Developer/Projects/MOO/EtaMOO/.cabal-sandbox/etc" getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath getBinDir = catchIO (getEnv "EtaMOO_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "EtaMOO_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "EtaMOO_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "EtaMOO_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "EtaMOO_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)