File: freeze.sh

package info (click to toggle)
woo 1.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 29,812 kB
  • ctags: 10,227
  • sloc: cpp: 48,664; python: 20,469; sh: 201; makefile: 39
file content (23 lines) | stat: -rw-r--r-- 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
set -e -x
# install Woo
python setup.py install
# install extras
for EX in wooExtra/*; do
	[ -f $EX/setup.py ] || continue
	pushd $EX
		python setup.py install
	popd
done

python /c/src/pyinstaller-develop/pyinstaller.py -y woo.pyinstaller.spec

pushd nsis
	# -w: woo
	# -e: extras
	# -l: libs
	# -u: upload (Linux-only)
	bash nsis-runall.sh -w -e
popd

exit 0