module Paths_pandoc_citeproc ( version, getBinDir, getLibDir, getDataDir, getLibexecDir, getDataFileName ) 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 {versionBranch = [0,2], versionTags = []} bindir, libdir, datadir, libexecdir :: FilePath bindir = "/usr/bin" libdir = "/usr/lib/haskell-packages/ghc/lib/pandoc-citeproc-0.2/ghc-7.6.3" datadir = "/usr/share/pandoc-citeproc" libexecdir = "/usr/libexec" getBinDir, getLibDir, getDataDir, getLibexecDir :: IO FilePath getBinDir = catchIO (getEnv "pandoc_citeproc_bindir") (\_ -> return bindir) getLibDir = catchIO (getEnv "pandoc_citeproc_libdir") (\_ -> return libdir) getDataDir = catchIO (getEnv "pandoc_citeproc_datadir") (\_ -> return datadir) getLibexecDir = catchIO (getEnv "pandoc_citeproc_libexecdir") (\_ -> return libexecdir) getDataFileName :: FilePath -> IO FilePath getDataFileName name = do dir <- getDataDir return (dir ++ "/" ++ name)