mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
21 lines
474 B
Bash
21 lines
474 B
Bash
#!/usr/bin/env bash
|
|
|
|
source $(dirname "$0")/tools.sh
|
|
|
|
if [ -n "$NSS_BUILD_MODULAR" ]; then
|
|
$(dirname "$0")/build_nspr.sh || exit $?
|
|
$(dirname "$0")/build_util.sh || exit $?
|
|
$(dirname "$0")/build_softoken.sh || exit $?
|
|
$(dirname "$0")/build_nss.sh || exit $?
|
|
exit
|
|
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
|