The Meson Build System http://mesonbuild.com/
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.
 
 
 
 
 
 

19 lines
265 B

#!/usr/bin/zsh
# This script must be run from the source root.
set -e
GENDIR=distgendir
rm -rf dist
rm -rf $GENDIR
mkdir dist
mkdir $GENDIR
cp -r .git $GENDIR
cd $GENDIR
git reset --hard
python3 setup.py sdist bdist_wheel
cp dist/* ../dist
cd ..
rm -rf $GENDIR