2013-11-14 12:28:05 +00:00
|
|
|
module Paths_hgraph (
|
|
|
|
version,
|
|
|
|
getBinDir, getLibDir, getDataDir, getLibexecDir,
|
2013-11-19 12:20:06 +00:00
|
|
|
getDataFileName
|
2013-11-14 12:28:05 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import qualified Control.Exception as Exception
|
|
|
|
import Data.Version (Version(..))
|
|
|
|
import System.Environment (getEnv)
|
|
|
|
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
|
|
|
|
catchIO = Exception.catch
|
|
|
|
|
|
|
|
|
|
|
|
version :: Version
|
|
|
|
version = Version {versionBranch = [0,0,1], versionTags = []}
|
2013-11-19 12:20:06 +00:00
|
|
|
bindir, libdir, datadir, libexecdir :: FilePath
|
2013-11-14 12:28:05 +00:00
|
|
|
|
2013-11-26 16:55:02 +00:00
|
|
|
bindir = "/homes/sdressel/.cabal/bin"
|
|
|
|
libdir = "/homes/sdressel/.cabal/lib/hgraph-0.0.1/ghc-7.4.1"
|
|
|
|
datadir = "/homes/sdressel/.cabal/share/hgraph-0.0.1"
|
|
|
|
libexecdir = "/homes/sdressel/.cabal/libexec"
|
2013-11-14 12:28:05 +00:00
|
|
|
|
2013-11-19 12:20:06 +00:00
|
|
|
getBinDir, getLibDir, getDataDir, getLibexecDir :: IO FilePath
|
2013-11-14 12:28:05 +00:00
|
|
|
getBinDir = catchIO (getEnv "hgraph_bindir") (\_ -> return bindir)
|
|
|
|
getLibDir = catchIO (getEnv "hgraph_libdir") (\_ -> return libdir)
|
|
|
|
getDataDir = catchIO (getEnv "hgraph_datadir") (\_ -> return datadir)
|
|
|
|
getLibexecDir = catchIO (getEnv "hgraph_libexecdir") (\_ -> return libexecdir)
|
|
|
|
|
|
|
|
getDataFileName :: FilePath -> IO FilePath
|
|
|
|
getDataFileName name = do
|
|
|
|
dir <- getDataDir
|
|
|
|
return (dir ++ "/" ++ name)
|