-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHclip.cabal
55 lines (39 loc) · 1.61 KB
/
Hclip.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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: 3.0.0.4
synopsis: A small cross-platform library for reading and modifying the system clipboard.
homepage: https://github.com/jetho/Hclip
license: BSD3
license-file: LICENSE
author: Jens Thomas
maintainer: jetho@gmx.de
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
cabal-version: >=1.10
library
exposed-modules: System.Hclip
other-extensions: CPP, DeriveDataTypeable, GADTs
default-language: Haskell2010
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