mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
18 lines
348 B
Bash
18 lines
348 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
source $(dirname $0)/tools.sh
|
||
|
|
|
||
|
|
if [[ $(id -u) -eq 0 ]]; then
|
||
|
|
# Drop privileges by re-running this script.
|
||
|
|
exec su worker -c "$0 $*"
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Clone NSPR if needed.
|
||
|
|
hg_clone https://hg.mozilla.org/projects/nspr nspr default
|
||
|
|
|
||
|
|
# Build.
|
||
|
|
nss/build.sh ${*--g -v}
|
||
|
|
|
||
|
|
# Package.
|
||
|
|
mkdir artifacts
|
||
|
|
tar cvfjh artifacts/dist.tar.bz2 dist
|