Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/make.sh
blob: b79d52e571518669af8d88324180f0c3f8e00acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# Description: Crude build/maker script for PKGBUILD dependencies and stuff.

rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.3/ *.pkg.*.xz archinstall-*.tar.gz

nuitka3 --standalone --show-progress archinstall
cp -r examples/ archinstall.dist/
mv archinstall.dist archinstall-v2.0.3
tar -czvf archinstall-v2.0.3.tar.gz archinstall-v2.0.3
makepkg -f

python3 setup.py sdist bdist_wheel
echo 'python3 -m twine upload dist/*'

rm -rf archinstall.egg-info/ build/ dist/ src/ pkg/ archinstall.build/ archinstall-v2.0.3/