File: gtk-traymanager.cabal

package info (click to toggle)
haskell-gtk-traymanager 0.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 136 kB
  • ctags: 103
  • sloc: ansic: 665; haskell: 154; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,299 bytes parent folder | download
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
name: gtk-traymanager
version: 0.1.6
synopsis: A wrapper around the eggtraymanager library for Linux system trays
license: LGPL-2.1
license-file: LICENSE
author: Tristan Ravitch
maintainer: tristan@nochair.net
category: Graphics
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md,
                    src/c/eggmarshalers.h,
                    src/c/eggtraymanager.h,
                    src/c/gdk-helper.h
stability: experimental
homepage: http://github.com/travitch/gtk-traymanager
description: This package provides a wrapper around the prolific eggtraymanager code.
             Note that it is *NOT* itself a system tray widget, though it is a very
             convenient utility for implementing one.  This package adopts the style
             of gtk2hs and is designed to work well with it.

library
  default-language: Haskell2010
  exposed-modules: Graphics.UI.Gtk.Misc.TrayManager
  build-depends: gtk >= 0.12.1 && < 0.15,
                 glib >= 0.12.1 && < 0.15,
                 base > 3 && < 5
  pkgconfig-depends: gtk+-2.0, x11
  hs-source-dirs: src
  c-sources: src/c/eggtraymanager.c, src/c/eggmarshalers.c, src/c/gdk-helper.c
  ghc-options: -Wall
  cc-options: -g

source-repository head
  type: git
  location: git://github.com/travitch/gtk-traymanager.git