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
|
# Guile-SQLite3
This is Guile-SQLite3, Guile bindings for the
[SQLite3](https://sqlite.org) database engine. The repository is at
[notabug.org](https://notabug.org/civodul/guile-sqlite3):
```bash
git clone https://notabug.org/civodul/guile-sqlite3.git
```
## Documentation
At the moment there is only the source code.
## Building
To build guile-sqlite3 you need GNUÂ Guile, Autoconf, Automake,
pkg-config, and SQLite.
Then just do:
```bash
autoreconf -vfi
./configure
make
```
## Testing
To run the test suite just do:
```bash
make check
```
## Installing
When building from source, simply type:
```bash
make install
```
Guile-SQLite3 can also be installed through your favorite distribution:
### GNUÂ Guix
`guix package -i guile-sqlite3`
### openSUSE
`sudo zypper install guile-sqlite3`
|