28 lines
947 B
Bash
28 lines
947 B
Bash
TERMUX_SUBPKG_DESCRIPTION="Simple, extensible, embeddable programming language"
|
|
TERMUX_SUBPKG_DEPENDS="readline"
|
|
TERMUX_SUBPKG_INCLUDE="bin/ share/man/man1/"
|
|
|
|
termux_step_create_subpkg_debscripts() {
|
|
cat <<- EOF > ./postinst
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
if [ "$TERMUX_PACKAGE_FORMAT" = "pacman" ] || [ "\$1" = "configure" ] || [ "\$1" = "abort-upgrade" ]; then
|
|
if [ -x "$TERMUX_PREFIX/bin/update-alternatives" ]; then
|
|
update-alternatives --install \
|
|
$TERMUX_PREFIX/bin/lua lua $TERMUX_PREFIX/bin/lua5.2 120
|
|
update-alternatives --install \
|
|
$TERMUX_PREFIX/bin/luac luac $TERMUX_PREFIX/bin/luac5.2 120
|
|
fi
|
|
fi
|
|
EOF
|
|
|
|
cat <<- EOF > ./prerm
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
if [ "$TERMUX_PACKAGE_FORMAT" = "pacman" ] || [ "\$1" != "upgrade" ]; then
|
|
if [ -x "$TERMUX_PREFIX/bin/update-alternatives" ]; then
|
|
update-alternatives --remove lua $TERMUX_PREFIX/bin/lua
|
|
update-alternatives --remove luac $TERMUX_PREFIX/bin/luac
|
|
fi
|
|
fi
|
|
EOF
|
|
}
|