Compare commits
No commits in common. "95bcbe4f8a0fb72d0257070d3dddbe3071bd4dd8" and "688acc52a693500c69fc60bdc794feab3d23af1d" have entirely different histories.
95bcbe4f8a
...
688acc52a6
|
|
@ -1,4 +1,5 @@
|
||||||
FROM schemers/chibi:head
|
FROM schemers/chibi:head
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
gcc ca-certificates libffi-dev docker.io make
|
gcc ca-certificates libffi-dev docker.io make
|
||||||
RUN snow-chibi install --impls=chibi retropikzel.test-r7rs
|
ARG timestamp=0
|
||||||
|
RUN snow-chibi install --impls=chibi retropikzel.test-r7rs && echo "$timestamp"
|
||||||
|
|
|
||||||
15
Makefile
15
Makefile
|
|
@ -2,8 +2,7 @@
|
||||||
SCHEME=chibi
|
SCHEME=chibi
|
||||||
RNRS=r7rs
|
RNRS=r7rs
|
||||||
LIBRARY=ctrf
|
LIBRARY=ctrf
|
||||||
DOCKER_TAG=head
|
VENV=venv-${SCHEME}-${RNRS}-${LIBRARY}
|
||||||
|
|
||||||
AUTHOR=retropikzel
|
AUTHOR=retropikzel
|
||||||
PKG=${AUTHOR}-${LIBRARY}-${VERSION}.tgz
|
PKG=${AUTHOR}-${LIBRARY}-${VERSION}.tgz
|
||||||
tmpdir=.tmp/${SCHEME}/${LIBRARY}
|
tmpdir=.tmp/${SCHEME}/${LIBRARY}
|
||||||
|
|
@ -19,19 +18,7 @@ ifeq "${RNRS}" "r6rs"
|
||||||
SFX=sps
|
SFX=sps
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq "${SCHEME}" "capyscheme"
|
|
||||||
DOCKER_TAG=head
|
DOCKER_TAG=head
|
||||||
endif
|
|
||||||
ifeq "${SCHEME}" "chibi"
|
|
||||||
DOCKER_TAG=head
|
|
||||||
endif
|
|
||||||
ifeq "${SCHEME}" "chicken"
|
|
||||||
DOCKER_TAG=head
|
|
||||||
endif
|
|
||||||
ifeq "${SCHEME}" "gauche"
|
|
||||||
DOCKER_TAG=head
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
all: package
|
all: package
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue