hsfm/hsfm.cabal

144 lines
4.8 KiB
Plaintext
Raw Normal View History

2015-12-17 03:42:22 +00:00
name: hsfm
version: 0.0.0.1
synopsis: Haskell FileManager
description: FileManager written in haskell
2015-12-17 03:42:22 +00:00
license: GPL-2
license-file: LICENSE
author: Julian Ospald
maintainer: hasufell@hasufell.de
2016-03-30 22:28:23 +00:00
copyright: Copyright: (c) 2016 Julian Ospald
homepage: https://github.com/hasufell/hsfm
2015-12-17 03:42:22 +00:00
category: Desktop
build-type: Simple
cabal-version: >=1.10
2016-03-30 18:16:34 +00:00
data-files:
LICENSE
data/Gtk/builder.xml
2015-12-19 23:49:14 +00:00
data/Gtk/icons/error.png
data/Gtk/icons/gtk-directory.png
data/Gtk/icons/gtk-file.png
2015-12-24 16:44:28 +00:00
data/Gtk/icons/hsfm.png
hsfm.cabal
2015-12-19 23:49:14 +00:00
2015-12-17 03:42:22 +00:00
library
2016-03-30 18:16:34 +00:00
exposed-modules:
HSFM.FileSystem.Errors
HSFM.FileSystem.FileOperations
HSFM.FileSystem.FileType
HSFM.Utils.IO
HSFM.Utils.MyPrelude
2015-12-17 03:42:22 +00:00
2016-03-30 18:16:34 +00:00
build-depends:
base >= 4.7,
bytestring,
containers,
2016-03-30 18:16:34 +00:00
data-default,
2015-12-17 03:42:22 +00:00
filepath >= 1.3.0.0,
2016-05-01 02:37:34 +00:00
hinotify-bytestring,
2016-03-30 18:16:34 +00:00
hpath,
2015-12-17 03:42:22 +00:00
mtl >= 2.2,
old-locale >= 1,
posix-paths,
2015-12-17 03:42:22 +00:00
process,
safe,
simple-sendfile,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
unix,
unix-bytestring,
utf8-string
2015-12-17 03:42:22 +00:00
hs-source-dirs: src
default-language: Haskell2010
Default-Extensions: RecordWildCards
PatternSynonyms
FlexibleInstances
ViewPatterns
2015-12-17 03:42:22 +00:00
ghc-options:
-O2
2015-12-22 13:16:17 +00:00
-threaded
2016-03-31 14:19:31 +00:00
-Wall
2015-12-22 13:16:17 +00:00
"-with-rtsopts=-N"
2015-12-17 03:42:22 +00:00
executable hsfm-gtk
2016-03-30 18:16:34 +00:00
main-is: HSFM/GUI/Gtk.hs
other-modules:
HSFM.GUI.Glib.GlibString
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Callbacks
HSFM.GUI.Gtk.Data
HSFM.GUI.Gtk.Dialogs
2016-03-31 14:19:31 +00:00
HSFM.GUI.Gtk.Errors
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Icons
HSFM.GUI.Gtk.MyGUI
HSFM.GUI.Gtk.MyView
HSFM.GUI.Gtk.Utils
HSFM.Utils.MyPrelude
2015-12-22 13:16:17 +00:00
2016-03-30 18:16:34 +00:00
build-depends:
Cabal >= 1.22.0.0,
2015-12-17 03:42:22 +00:00
base >= 4.7,
bytestring,
containers,
2015-12-17 03:42:22 +00:00
data-default,
filepath >= 1.3.0.0,
2016-03-30 18:16:34 +00:00
glib >= 0.13,
gtk3 >= 0.14.1,
hinotify-bytestring,
2016-03-30 18:16:34 +00:00
hpath,
hsfm,
2015-12-17 03:42:22 +00:00
mtl >= 2.2,
old-locale >= 1,
posix-paths,
2015-12-17 03:42:22 +00:00
process,
safe,
simple-sendfile,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
transformers,
unix,
unix-bytestring,
utf8-string,
word8
2015-12-17 03:42:22 +00:00
hs-source-dirs: src
default-language: Haskell2010
Default-Extensions: RecordWildCards
PatternSynonyms
FlexibleInstances
ViewPatterns
2015-12-17 03:42:22 +00:00
ghc-options:
-O2
2015-12-22 13:16:17 +00:00
-threaded
2016-03-31 14:19:31 +00:00
-Wall
2015-12-22 13:16:17 +00:00
"-with-rtsopts=-N"
2016-05-02 17:08:46 +00:00
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test
Main-Is: Spec.hs
2016-05-03 11:13:07 +00:00
other-modules:
2016-05-03 11:27:10 +00:00
FileSystem.FileOperations.CopyDirRecursiveSpec
FileSystem.FileOperations.CopyFileSpec
FileSystem.FileOperations.CreateDirSpec
FileSystem.FileOperations.CreateRegularFileSpec
FileSystem.FileOperations.DeleteDirRecursiveSpec
FileSystem.FileOperations.DeleteDirSpec
FileSystem.FileOperations.DeleteFileSpec
FileSystem.FileOperations.GetDirsFilesSpec
FileSystem.FileOperations.GetFileTypeSpec
FileSystem.FileOperations.MoveFileSpec
FileSystem.FileOperations.RecreateSymlinkSpec
FileSystem.FileOperations.RenameFileSpec
2016-05-03 11:13:07 +00:00
Utils
2016-05-02 17:08:46 +00:00
GHC-Options: -Wall
Build-Depends: base
, HUnit
, bytestring
, hpath
, hsfm
, hspec >= 1.3
, process
, unix