diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-12-25 14:29:13 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-12-28 19:11:43 +0100 |
commit | 206c30220683ff50f35277e8df4b9687848b7a0e (patch) | |
tree | 8806e1637d657092445ac6f317ddbe811d03089e /README | |
parent | 145077f160b4951da00527b082f81e8412ba8d32 (diff) | |
download | cuirass-206c30220683ff50f35277e8df4b9687848b7a0e.tar cuirass-206c30220683ff50f35277e8df4b9687848b7a0e.tar.gz |
build: Add "build-aux/guix.scm".
* guix.scm: Delete.
* build-aux/guix-env: Likewise.
* build-aux/guix.scm: New file.
* configure.ac (AC_REQUIRE_AUX_FILE): Distribute it.
* README <Build Instructions>: Document it.
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -16,11 +16,27 @@ Cuirass currently depends on the following packages: A convenient way to install those dependencies is to install Guix and execute the following command: - ./build-aux/guix-env + $ guix environment -l build-aux/guix.scm This will build and enter an environment which provides all the necessary dependencies. +Build Instructions +================== + +When all the dependencies are available on you system, in order to build and +install Cuirass, you can proceed with the usual: + + $ ./configure && sudo make install + +An alternative way is to directly install Cuirass in your Guix profile, using: + + $ guix package -f build-aux/guix.scm + +To build it, but not install it, run: + + $ guix build -f build-aux/guix.scm + Example ======= |