packages feed

pvd-1.0.1: pvd.cabal

Name:                pvd
Version:             1.0.1

Synopsis:            A photo viewer daemon application with remote controlling abilities.

Description:         pvd, Photo Viewer Daemon, is an image viewer application that displays a fullscreen X11 window and listens for remote commands over TCP. The project also includes pvc, a simple command line client application you can use to control pvd. pvc has commands for setting the current photo playlist, jumping between photos, etc. pvd implements caching in the background which makes it possible to quickly switch between photos even if the files are fetched over network or if pvd runs on a slow computer. pvd uses the DevIL image library for loading photo files, which supports a large number of image formats.

Homepage:            http://code.haskell.org/pvd
License:             BSD3
License-file:        LICENSE
Author:              Rickard Nilsson
Maintainer:          rickard.nilsson@telia.com
Copyright:           (c) 2010, Rickard Nilsson
Category:            Image Viewer
Build-type:          Simple
Extra-source-files:  README
Cabal-version:       >=1.2

Executable pvd
  Main-Is:         Pvd.hs
  Build-Depends:   base >= 4 && < 5, array, X11, Codec-Image-DevIL, network, mtl
  Other-Modules:   Codec.Image.DevIL.Extras, XUtils
  Build-tools:     hsc2hs
  Extensions:      ForeignFunctionInterface, CPP
  Ghc-Options:     -threaded
  Extra-Libraries: IL, pthread
  if os(windows)
    CPP-Options: -DCALLTYPE=stdcall
  else
    CPP-Options: -DCALLTYPE=ccall

Executable pvc
  Main-Is:         Pvc.hs
  Build-Depends:   base >= 4 && < 5, haskell98, network, containers