Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xmonad/X11
A Haskell binding to the X11 graphics library.
https://github.com/xmonad/X11
hacktoberfest haskell x11 xmonad
Last synced: 3 months ago
JSON representation
A Haskell binding to the X11 graphics library.
- Host: GitHub
- URL: https://github.com/xmonad/X11
- Owner: xmonad
- License: other
- Created: 2011-11-18T21:41:37.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-03-23T06:45:44.000Z (8 months ago)
- Last Synced: 2024-03-25T03:02:45.886Z (8 months ago)
- Topics: hacktoberfest, haskell, x11, xmonad
- Language: Haskell
- Homepage: http://hackage.haskell.org/package/X11
- Size: 643 KB
- Stars: 104
- Watchers: 23
- Forks: 58
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# Haskell binding to the X11 graphics library [![Hackage](https://img.shields.io/hackage/v/X11.svg?style=flat)](https://hackage.haskell.org/package/X11) [![Build Status](https://img.shields.io/travis/xmonad/X11.svg?style=flat)](https://travis-ci.org/xmonad/X11)
To build this package using Cabal directly from Git, you must run
`autoreconf` before the usual Cabal build steps (configure/build/install).
`autoreconf` is included in the GNU autoconf tools. There is no need to run
the `configure` script: the `cabal configure` step will do this for you.If you are building from a source tarball, you can just use the standard Cabal
installation stanza:cabal configure
cabal build
cabal installXinerama support is enabled by default if Xinerama headers are detected. To
disable Xinerama support, add the `--without-xinerama` flag to
`configure-option`:cabal configure --configure-option="--without-xinerama"
However, if you are building from Git, X11 uses `autoconf`, so you need
to have `autoconf` installed and run `autoconf`/`autoheader` before building:autoconf
autoheaderor
autoreconf
You will need development versions of at least the X11, xrandr, and XScreenSaver
libraries installed for the build to succeed; having the development version of
the Xinerama library will enable some optional bindings.