This commit is contained in:
Vivianne 2024-03-08 15:26:30 -05:00
parent 3885faaa3a
commit d55cea5be4
Signed by: vv
GPG Key ID: F3E249EDFAC7BE26
7 changed files with 17 additions and 17 deletions

View File

@ -1,10 +1,10 @@
# -*- mode: org; coding: utf-8; -*-
#+TITLE: Hacking guile-guart
#+TITLE: Hacking guile-gaart
* Contributing
By far the easiest way to hack on guile-guart is to develop using Guix:
By far the easiest way to hack on guile-gaart is to develop using Guix:
#+BEGIN_SRC bash
# Obtain the source code

View File

@ -23,7 +23,7 @@ SUFFIXES = .scm .go
.scm.go:
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"
SOURCES = guart.scm
SOURCES = gaart.scm
TESTS =
@ -41,7 +41,7 @@ AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
info_TEXINFOS = doc/guile-guart.texi
info_TEXINFOS = doc/guile-gaart.texi
EXTRA_DIST = README.org \
HACKING \

View File

@ -1,11 +1,11 @@
dnl -*- Autoconf -*-
AC_INIT(guile-guart, 0.1)
AC_INIT(guile-gaart, 0.1)
AC_SUBST(HVERSION, "\"0.1\"")
AC_SUBST(AUTHOR, "\"Vivanne Langdon\"")
AC_SUBST(COPYRIGHT, "'(2024)")
AC_SUBST(LICENSE, gpl3+)
AC_CONFIG_SRCDIR(guart.scm)
AC_CONFIG_SRCDIR(gaart.scm)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.12 foreign silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability])
AM_SILENT_RULES([yes])

View File

@ -2,9 +2,9 @@
@c -*-texinfo-*-
@c %**start of header
@setfilename guart.info
@setfilename gaart.info
@documentencoding UTF-8
@settitle Guart Reference Manual
@settitle Gaart Reference Manual
@c %**end of header
@include version.texi
@ -22,11 +22,11 @@ Documentation License''.
@dircategory The Algorithmic Language Scheme
@direntry
* Guart: (guart).
* Gaart: (gaart).
@end direntry
@titlepage
@title The Guart Manual
@title The Gaart Manual
@author Vivianne Langdon
@page
@ -41,12 +41,12 @@ Edition @value{EDITION} @*
@c *********************************************************************
@node Top
@top Guart
@top Gaart
This document describes Guart version @value{VERSION}.
This document describes Gaart version @value{VERSION}.
@menu
* Introduction:: Why Guart?
* Introduction:: Why Gaart?
@end menu
@c *********************************************************************

2
gaart.scm Normal file
View File

@ -0,0 +1,2 @@
(define-module (gaart)
#:export ())

View File

@ -1,2 +0,0 @@
(define-module (guart)
#:export ())

View File

@ -14,7 +14,7 @@
(srfi srfi-1))
(package
(name "guile-guart")
(name "guile-gaart")
(version "0.1")
(source
(local-file
@ -36,5 +36,5 @@
(description
"A library for drawing visual elements to the terminal in a composable way.")
(home-page
"https://git.solarpunk.moe/solarpunk-guile/guile-guart")
"https://git.solarpunk.moe/solarpunk-guile/guile-gaart")
(license license:gpl3+))