mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
18 lines
342 B
Bash
18 lines
342 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 $0
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Clone NSPR if needed.
|
||
|
|
hg_clone https://hg.mozilla.org/projects/nspr nspr default
|
||
|
|
|
||
|
|
# Build.
|
||
|
|
make -C nss nss_build_all
|
||
|
|
|
||
|
|
# Package.
|
||
|
|
mkdir artifacts
|
||
|
|
tar cvfjh artifacts/dist.tar.bz2 dist
|