Prepare SRFI-170 for git-indexing. Bumpd version

This commit is contained in:
retropikzel 2026-08-29 14:59:08 +03:00
parent 8baff1392d
commit 02c5fa06ca
2 changed files with 8 additions and 3 deletions

View File

@ -4,20 +4,25 @@ SCHEME=chibi
SRFI=170
PKG=srfi-${SRFI}-${VERSION}.tgz
VERSION=$$(cat srfi/${SRFI}/VERSION)
TESTFILE=srfi/${SRFI}/test.scm
DOCFILE=srfi/${SRFI}/index.html
all: package
package: srfi/${SRFI}/LICENSE srfi/${SRFI}/VERSION
cp srfi/${SRFI}/index.html index.html
cp srfi/${SRFI}/test.scm test.scm
snow-chibi package \
--license="$$(cat srfi/${SRFI}/LICENSE)" \
--version="${VERSION}" \
--authors="$$(cat srfi/${SRFI}/AUTHORS 2>/dev/null || echo 'Retropikzel')" \
--doc=index.html \
--doc=${DOCFILE} \
--test=${TESTFILE}
--description="$$(cat srfi/${SRFI}/DESCRIPTION)" \
srfi/${SRFI}.sld
git-index: package
snow-chibi git-index ${PKG}
install:
snow-chibi install --impls=${SCHEME} --skip-tests?=1 ${PKG}

View File

@ -1 +1 @@
0.2.4
0.2.5