You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasi-sdk/deb_from_installation.sh

16 lines
347 B

#!/usr/bin/env sh
if [ -n "$1" ]; then
export VERSION="$1"
else
export VERSION=`./version.sh`
fi
rm -rf build/pkg
mkdir -p build/pkg/opt
mkdir -p build/pkg/DEBIAN
sed -e s/VERSION/$VERSION/ wasi-sdk.control > build/pkg/DEBIAN/control
cp -R /opt/wasi-sdk build/pkg/opt/
dpkg-deb -b build/pkg build/wasi-sdk_$VERSION\_amd64.deb
rm -rf build/pkg