Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build instructions for Fedora #43

Merged
merged 1 commit into from Sep 18, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.rst
Expand Up @@ -24,17 +24,32 @@ Arch Linux
``pacman -S libev``
Ubuntu
``apt-get install libev-dev``
Fedora
``yum install libev-devel``
Mac OS X (using homebrew_)
``brew install libev``
Your Contribution Here
Fork me and send a pull request

bjoern
------
Make sure *libev* is installed and then::

For most users, the easiest way to install bjoern is using ``pip``. Make sure
*libev* is installed and then::

pip install bjoern

You can also build bjoern by directly using the provided ``setup.py`` file (this
is probably most useful if you actually want to hack on bjoern)::

python setup.py install

On some Linux systems (notably Fedora), the libev headers may be installed
outside of the default include path. In order to build bjoern you will need to
export ``CFLAGS`` when running ``setup.py``, for instance::

CFLAGS=-I/usr/include/libev python setup.py install

Usage
~~~~~
::
Expand Down