blob: e1dddefcd50616b6eb1aaf908f3c11b8ce336990 (
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
40
41
42
43
44
45
46
|
# Guile-SDL3
Guile-SDL3 provides Guile Scheme bindings for the SDL3 library.
## Requirements
- Guile >= 3.0
- SDL3 >= 3.0.0
- make
- pkg-config
When building from a Git checkout, the following additional packages
are required:
- autoconf
- automake
- texinfo
If you use Guix, a build environment can be created by running `guix
shell`.
## Building
### From release tarball
```
./configure
make
make install
```
### From Git checkout
```
./bootstrap
./configure
make
make install
```
## Contributing
In lieu of a proper issue tracker, send patches and bug reports to
<dthompson2@worcester.edu>. Discussion can be had on the #guile
channel on the Libera.Chat IRC network or on the guile-user mailing
lis.
|