mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
2b65bc0e67
We use true or false for other bool build variables. Let's be consistent. Change does not have an effect on build scripts. %ci:no-build
31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
TERMUX_SUBPKG_INCLUDE="bin/ share/man/man1/"
|
|
TERMUX_SUBPKG_DESCRIPTION="Simple, extensible, embeddable programming language"
|
|
TERMUX_SUBPKG_DEPEND_ON_PARENT=false
|
|
TERMUX_SUBPKG_DEPENDS="readline"
|
|
TERMUX_SUBPKG_BREAKS="lua (<< 5.3.5-6)"
|
|
TERMUX_SUBPKG_REPLACES="lua (<< 5.3.5-6)"
|
|
|
|
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.3 130
|
|
update-alternatives --install \
|
|
$TERMUX_PREFIX/bin/luac luac $TERMUX_PREFIX/bin/luac5.3 130
|
|
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
|
|
}
|