module Paths_lambdabot_core ( 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 [5,0,3] [] bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath bindir = "/usr/bin" libdir = "/usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-7.10.3/lambdabot-core-5.0.3-6gf3Pgnouqz5VDMjKjwqS3" datadir = "/usr/share/lambdabot-core" libexecdir = "/usr/lib" sysconfdir = "/usr/etc" getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath getBinDir = catchIO (getEnv "lambdabot_core_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "lambdabot_core_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "lambdabot_core_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "lambdabot_core_libexecdir") (\_ -> return libexecdir) getSysconfDir = catchIO (getEnv "lambdabot_core_sysconfdir") (\_ -> return sysconfdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)