aboutsummaryrefslogtreecommitdiffstats
path: root/HACKING
blob: 99075d1b28a804e737c0e99b1c18aad1d8f48a43 (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- mode: org; coding: utf-8; -*-

#+TITLE: Hacking pinentry-rofi

* Contributing

By far the easiest way to hack on pinentry-rofi is to develop using
Guix:

#+BEGIN_SRC bash
  # Obtain the source code
  cd /path/to/source-code
  guix build -f guix.scm
#+END_SRC

You can now hack this project's files to your heart's content, whilst
testing them from Guix.

To try out any scripts in the project, the easiest is just to install it to a guix profile.

Here is an example to install it to the default profile:
#+BEGIN_SRC bash
  guix package -f guix.scm
#+END_SRC

Then when you're done simply roll back. This can also be used when
testing it against gpg-agent by following what is described in the
[[file:README.org][README]].

** Manual Installation

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

Once those dependencies are installed you can run:

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

** Guile Hall

   The core of the gnu build system is generated by guile-hall. There
   are some modifications done after that so avoid running
   =hall clean -x= and =hall dist -x= as that will override those
   changes.

   Right now I haven't figured out a good way of dealing with keeping
   the version in sync between the different files, which what I
   mainly used =hall= for.