mirror of
https://github.com/termux/proot-distro.git
synced 2024-11-13 12:49:19 +00:00
17 lines
667 B
Bash
17 lines
667 B
Bash
# This is a default distribution plug-in.
|
|
# Do not modify this file as your changes will be overwritten on next update.
|
|
# If you want customize installation, please make a copy.
|
|
DISTRO_NAME="Manjaro"
|
|
DISTRO_COMMENT="Manjaro ARM64 port."
|
|
|
|
TARBALL_URL['aarch64']="https://github.com/termux/proot-distro/releases/download/v4.14.1/manjaro-aarch64-pd-v4.14.1.tar.xz"
|
|
TARBALL_SHA256['aarch64']="4045baff1c137a6f37398c99f415e7bcaec9afdca2b8ed7d9045cebedc16f3a0"
|
|
|
|
distro_setup() {
|
|
# Fix environment variables on login or su.
|
|
local f
|
|
for f in su su-l system-local-login system-remote-login; do
|
|
echo "session required pam_env.so readenv=1" >> ./etc/pam.d/"${f}"
|
|
done
|
|
}
|