mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-01-29 16:32:41 -05:00
21 lines
526 B
Bash
21 lines
526 B
Bash
#!/bin/bash
|
|
|
|
# Caution: Should not be sourced directly!
|
|
# Use 'env_local.sh' or 'env_fdroid.sh' instead.
|
|
|
|
MOZ_CHROME_MULTILOCALE=$(<"$patches/locales")
|
|
export MOZ_CHROME_MULTILOCALE
|
|
|
|
export NSS_DIR="$application_services/libs/desktop/linux-x86-64/nss"
|
|
export NSS_STATIC=1
|
|
|
|
export ARTIFACTS="$rootdir/artifacts"
|
|
export APK_ARTIFACTS=$ARTIFACTS/apk
|
|
export APKS_ARTIFACTS=$ARTIFACTS/apks
|
|
export AAR_ARTIFACTS=$ARTIFACTS/aar
|
|
|
|
mkdir -p "$APK_ARTIFACTS"
|
|
mkdir -p "$APKS_ARTIFACTS"
|
|
mkdir -p "$AAR_ARTIFACTS"
|
|
|
|
export env_source="true" |