2011-07-12 03:08:19 +02:00
|
|
|
cabal-version: >= 1.8
|
2011-07-12 02:56:30 +02:00
|
|
|
name: phi
|
|
|
|
version: 0.1
|
|
|
|
synopsis: An X panel
|
|
|
|
description: An X panel
|
|
|
|
category: X11
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Matthias Schiffer
|
|
|
|
maintainer: mschiffer@universe-factory.net
|
|
|
|
build-type: Simple
|
|
|
|
|
2011-09-09 03:20:16 +02:00
|
|
|
|
2011-07-12 02:56:30 +02:00
|
|
|
library
|
2011-10-08 05:12:41 +02:00
|
|
|
build-depends: base >= 4, template-haskell, stm, array, containers, transformers, mtl, utf8-string, time, old-locale, xhb >= 0.5, xhb-native,
|
2011-09-07 16:38:36 +02:00
|
|
|
cairo, pango, unix, data-accessor, arrows, CacheArrow
|
|
|
|
exposed-modules: Phi.Types, Phi.Phi, Phi.Panel, Phi.Widget, Phi.Border, Phi.X11
|
2011-09-08 19:15:23 +02:00
|
|
|
Phi.Widgets.AlphaBox, Phi.Widgets.Clock, Phi.Widgets.X11.Taskbar
|
2011-09-07 19:35:59 +02:00
|
|
|
-- , Phi.Widgets.Systray
|
2011-09-09 03:20:16 +02:00
|
|
|
other-modules: Phi.X11.AtomList, Phi.Bindings.XCB, Phi.X11.Atoms, Phi.X11.Util
|
2011-07-19 14:50:04 +02:00
|
|
|
include-dirs: include
|
2011-07-12 03:08:19 +02:00
|
|
|
hs-source-dirs: lib
|
2011-09-07 16:38:36 +02:00
|
|
|
pkgconfig-depends: xcb, cairo >= 1.2.0, cairo-xcb
|
2011-07-19 12:25:08 +02:00
|
|
|
ghc-options: -fspec-constr-count=16 -threaded
|
2011-07-12 02:56:30 +02:00
|
|
|
|
2011-09-09 03:20:16 +02:00
|
|
|
executable PhiSystrayHelper
|
2011-10-08 05:12:41 +02:00
|
|
|
build-depends: base >= 4, template-haskell, xhb >= 0.5, xhb-native
|
2011-09-09 03:20:16 +02:00
|
|
|
hs-source-dirs: src, lib
|
|
|
|
main-is: SystrayHelper.hs
|
|
|
|
other-modules: Phi.X11.AtomList, Phi.X11.Atoms, Phi.X11.Util
|
|
|
|
ghc-options: -threaded
|
|
|
|
|
2011-07-12 02:56:30 +02:00
|
|
|
executable Phi
|
2011-07-12 03:08:19 +02:00
|
|
|
build-depends: base >= 4, phi
|
|
|
|
hs-source-dirs: src
|
|
|
|
main-is: Phi.hs
|
2011-09-09 03:20:16 +02:00
|
|
|
ghc-options: -threaded
|