-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHFuse.cabal
31 lines (29 loc) · 1.13 KB
/
HFuse.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
Name: HFuse
Version: 0.2.4
License: BSD3
License-File: LICENSE
Author: Jeremy Bobbio
Maintainer: Taru Karttunen <taruti@taruti.net>
Synopsis: HFuse is a binding for the Linux FUSE library.
Homepage: http://code.haskell.org/hfuse
Category: System
Stability: Experimental
Cabal-Version: >= 1.2
Build-Type: Simple
Extra-source-files: README
Library
Build-Depends: base >= 4 && < 5, unix, bytestring
exposed-Modules: System.Fuse
Extensions: ForeignFunctionInterface ScopedTypeVariables EmptyDataDecls
Include-Dirs: /usr/include, /usr/local/include, .
Extra-Libraries: fuse
Extra-Lib-Dirs: /usr/local/lib
CC-Options: -D_FILE_OFFSET_BITS=64
if os(darwin) {
CC-Options: "-DMACFUSE"
CC-Options: "-D__FreeBSD__=10"
CC-Options: "-DFUSE_USE_VERSION=26"
Includes: dirent.h, fuse.h, fcntl.h
} else {
Includes: sys/statfs.h, dirent.h, fuse.h, fcntl.h
}