10 lines
231 B
Bash
Executable file
10 lines
231 B
Bash
Executable file
#!/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}/"
|