README 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Guile-SQLite3
  2. This is Guile-SQLite3, Guile bindings for the
  3. [SQLite3](https://sqlite.org) database engine. The repository is at
  4. [notabug.org](https://notabug.org/civodul/guile-sqlite3):
  5. ```bash
  6. git clone https://notabug.org/civodul/guile-sqlite3.git
  7. ```
  8. ## Documentation
  9. At the moment there is only the source code.
  10. ## Building
  11. To build guile-sqlite3 you need GNU Guile, Autoconf, Automake,
  12. pkg-config, and SQLite.
  13. Then just do:
  14. ```bash
  15. autoreconf -vfi
  16. ./configure
  17. make
  18. ```
  19. ## Testing
  20. To run the test suite just do:
  21. ```bash
  22. make check
  23. ```
  24. ## Installing
  25. When building from source, simply type:
  26. ```bash
  27. make install
  28. ```
  29. Guile-SQLite3 can also be installed through your favorite distribution:
  30. ### GNU Guix
  31. `guix package -i guile-sqlite3`
  32. ### openSUSE
  33. `sudo zypper install guile-sqlite3`