mirror of https://github.com/WebAssembly/wasi-sdk
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.
16 lines
347 B
16 lines
347 B
6 years ago
|
#!/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
|