mirror of
https://github.com/9001/copyparty.git
synced 2025-10-06 03:50:30 +02:00
misc buildscript / docs:
* make-sfx.sh: fix missing licenses on very first build * docker/make.sh: add warning on missing deps * pyinstaller: cleanup notes * add notes: * building on archlinux * buliding python 2.7 * support for Zed IDE
This commit is contained in:
parent
8f587627e1
commit
17b4f905a7
7 changed files with 71 additions and 37 deletions
|
@ -18,6 +18,13 @@ ngs=(
|
|||
dj-{ppc64le,s390x,arm}
|
||||
)
|
||||
|
||||
err=
|
||||
for x in awk jq podman python3 tar wget ; do
|
||||
command -v $x >/dev/null && continue
|
||||
err=1; echo ERROR: missing dependency: $x
|
||||
done
|
||||
[ $err ] && exit 1
|
||||
|
||||
for v in "$@"; do
|
||||
[ "$v" = clean ] && clean=1
|
||||
[ "$v" = hclean ] && hclean=1
|
||||
|
@ -56,7 +63,7 @@ filt=
|
|||
for a in $sarchs; do # arm/v6
|
||||
podman pull --arch=$a alpine:latest
|
||||
done
|
||||
|
||||
|
||||
podman images --format "{{.ID}} {{.History}}" |
|
||||
awk '/library\/alpine/{print$1}' |
|
||||
while read id; do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue