|
Distribution.Simple.Program | Portability | GHC, Hugs | Stability | alpha | Maintainer | Isaac Jones <ijones@syntaxpolice.org> |
|
|
|
|
|
Description |
Explanation: A program is basically a name, a location, and some
arguments.
One nice thing about using it is that any program that is
registered with Cabal will get some "configure" and ".cabal"
helpers like --with-foo-args --foo-path= and extra-foo-args.
There's also good default behavior for trying to find "foo" in
PATH, being able to override its location, etc.
There's also a hook for adding programs in a Setup.lhs script. See
hookedPrograms in UserHooks. This gives a
hook user the ability to get the above flags and such so that they
don't have to write all the PATH logic inside Setup.lhs.
|
|
Synopsis |
|
|
|
|
Program and functions for constructing them
|
|
|
Represents a program which can be configured.
| Constructors | Program | | programName :: String | The simple name of the program, eg. ghc
| programFindLocation :: (Verbosity -> IO (Maybe FilePath)) | A function to search for the program if it's location was not
specified by the user. Usually this will just be a
| programFindVersion :: (Verbosity -> FilePath -> IO (Maybe Version)) | Try to find the version of the program. For many programs this is
not possible or is not necessary so it's ok to return Nothing.
|
|
|
|
|
|
Make a simple named program.
By default we'll just search for it in the path and not try to find the
version name. You can override these behaviours if necessary, eg:
simpleProgram "foo" { programFindLocation = ... , programFindVersion ... }
|
|
|
Look for a program on the path.
|
|
|
:: ProgArg | version args
| -> (String -> String) | function to select version
number from program output
| -> Verbosity | | -> FilePath | location
| -> IO (Maybe Version) | | Look for a program and try to find it's version number. It can accept
either an absolute path or the name of a program binary, in which case we
will look for the program on the path.
|
|
|
Configured program and related functions
|
|
|
Constructors | ConfiguredProgram | | programId :: String | Just the name again
| programVersion :: (Maybe Version) | The version of this program, if it is known.
| programArgs :: [ProgArg] | Default command-line args for this program.
These flags will appear first on the command line, so they can be
overridden by subsequent flags.
| programLocation :: ProgramLocation | Location of the program. eg. /usr/bin/ghc-6.4
|
|
| Instances | |
|
|
|
The full path of a configured program.
|
|
|
|
|
Where a program was found. Also tells us whether it's specifed by user or
not. This includes not just the path, but the program as well.
| Constructors | UserSpecified | The user gave the path to this program,
eg. --ghc-path=/usr/bin/ghc-6.6
| | FoundOnSystem | The location of the program, as located by searching PATH.
| |
| Instances | |
|
|
|
|
|
|
|
|
The collection of unconfigured and configured progams
|
|
|
The default list of programs.
These programs are typically used internally to Cabal.
|
|
The collection of configured programs we can run
|
|
data ProgramConfiguration | Source |
|
The configuration is a collection of information about programs. It
contains information both about configured programs and also about programs
that we are yet to configure.
The idea is that we start from a collection of unconfigured programs and one
by one we try to configure them at which point we move them into the
configured collection. For unconfigured programs we record not just the
Program but also any user-provided arguments and location for the program.
| Instances | |
|
|
|
|
|
|
|
Add a known program that we may configure later
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Try to find a configured program
|
|
|
Update a configured program in the database.
|
|
|
Try to configure all the known programs that have not yet been configured.
|
|
|
Check that a program is configured and available to be run.
Additionally check that the version of the program number is suitable.
For example AnyVersion or orLaterVersion (Version [1,0] [])
It raises an exception if the program could not be configured or the version
is unsuitable, otherwise it returns the configured program.
|
|
|
|
|
rawSystemProgramStdoutConf | Source |
|
|
|
Programs that Cabal knows about
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Produced by Haddock version 0.9 |