-
Notifications
You must be signed in to change notification settings - Fork 1
/
pvd.cabal
35 lines (30 loc) · 1.69 KB
/
pvd.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
Name: pvd
Version: 1.1.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: https://github.com/rickynils/pvd
License: BSD3
License-file: LICENSE
Author: Rickard Nilsson
Maintainer: [email protected]
Copyright: (c) 2010-2013, 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, PvdSocket, PvdMonad
Build-tools: hsc2hs
Extensions: ForeignFunctionInterface, CPP, GeneralizedNewtypeDeriving
Ghc-Options: -threaded -Wall -O2
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, network, containers, stm
Ghc-Options: -threaded -Wall -O2