summaryrefslogtreecommitdiff
path: root/HACKING
blob: 109bafe692886d7d115c6768ae1c950a7ea10da8 (about) (plain)
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
36
37
38
39
-*- mode: org; coding: utf-8; -*-

#+TITLE: Hacking drmaa

* Contributing

By far the easiest way to hack on Guile DRMAA is to develop using Guix:

#+BEGIN_SRC bash
# Obtain the source code
cd /path/to/source-code
guix environment -l guix.scm
# In the new shell, run:
autoreconf -vif && ./configure && make check
#+END_SRC

You can now hack this project's files to your heart's content, whilst
testing them from your =guix environment= shell.

To try out any scripts in the project you can now use

#+BEGIN_SRC bash
./pre-inst-env scripts/${script-name}
#+END_SRC

** Manual Installation

If you do not yet use Guix, you will have to install this project's
dependencies manually:
  - autoconf
  - automake
  - pkg-config
  - texinfo

Once those dependencies are installed you can run:

#+BEGIN_SRC bash
autoreconf -vif && ./configure && make check
#+END_SRC