2023-01-23 04:50:50 +00:00
|
|
|
DEPS=(github.com/fare/gerbil-utils
|
|
|
|
github.com/fare/gerbil-poo
|
|
|
|
github.com/fare/gerbil-crypto
|
|
|
|
github.com/fare/gerbil-persist
|
|
|
|
github.com/fare/gerbil-ethereum
|
|
|
|
github.com/drewc/gerbil-swank
|
|
|
|
github.com/drewc/drewc-r7rs-swank
|
|
|
|
github.com/drewc/smug-gerbil
|
|
|
|
github.com/drewc/ftw
|
|
|
|
github.com/vyzo/gerbil-libp2p
|
|
|
|
) ;
|
|
|
|
for i in ${DEPS[@]} ; do
|
2023-01-28 17:56:43 +00:00
|
|
|
echo "Installing gerbil package: $i"
|
2023-04-05 02:26:19 +00:00
|
|
|
gxpkg install $i
|
2023-01-23 04:50:50 +00:00
|
|
|
gxpkg build $i
|
|
|
|
done
|