11 lines
231 B
Text
11 lines
231 B
Text
|
#!/bin/bash -ex
|
||
|
git clone --depth 1 https://code.ryuslash.org/ryuslash/guile-inkplate.git .
|
||
|
guix shell -D --file=guix.scm <<EOF
|
||
|
set -o errexit
|
||
|
autoreconf -ivf
|
||
|
./configure
|
||
|
make dist
|
||
|
exit
|
||
|
EOF
|
||
|
mv guile-inkplate-*.tar.gz "${ARCHIVE}/"
|