Hclip-1.0.0.2: Hclip.cabal
-- Initial Hclip.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: Hclip
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0.2
-- A short (one-line) description of the package.
synopsis: A small cross-platform library for reading and modifying the system clipboard.
-- A longer description of the package.
-- description:
-- URL for the project homepage or repository.
homepage: https://github.com/jetho/Hclip
-- The license under which the package is released.
license: BSD3
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Jens Thomas
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: jetho@gmx.de
-- A copyright notice.
-- copyright:
category: System
Description:
A small cross-platform library for reading and modifying the system clipboard.
.
Hclip works on Windows, Mac OS X and Linux (but see the requirements below!).
.
Requirements:
.
* Windows: No additional requirements.
.
* Mac OS X: Requires the pbcopy and pbpaste commands, which ship with Mac OS X.
.
* Linux: Requires xclip or xsel installed.
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.8
library
-- Modules exported by the library.
exposed-modules: System.Hclip
Extensions: CPP
-- Modules included in this library but not exported.
-- other-modules:
-- Other library packages from which modules are imported.
build-depends: base >= 3 && < 5,
process,
mtl,
strict
if os(windows)
Build-depends: Win32
source-repository head
type: git
location: git://github.com/jetho/Hclip.git