mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
15 lines
242 B
Bash
15 lines
242 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -v -e -x
|
||
|
|
|
||
|
|
# Set up the toolchain.
|
||
|
|
source $(dirname $0)/setup.sh
|
||
|
|
|
||
|
|
# Clone NSPR.
|
||
|
|
hg_clone https://hg.mozilla.org/projects/nspr nspr default
|
||
|
|
|
||
|
|
# Build.
|
||
|
|
make -C nss nss_build_all
|
||
|
|
|
||
|
|
# Package.
|
||
|
|
7z a public/build/dist.7z dist
|