mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-02 07:29:21 +00:00
* Add a new alpine linux dependency install script. * Use the script in CI to avoid duplication * Add pkgconfig
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Install package dependencies on Alpine linux.
|
|
#
|
|
# This script is used by the CI!
|
|
|
|
apk update
|
|
apk add build-base bash musl-dev curl tar make libtool libffi-dev gcc automake autoconf git openssl-dev g++ pkgconfig
|