9c9e7f65b8
Specifying Termux org members is more correct as we don't have repo-specific maintainers for termux-packages. DEB control field specification doesn't allow to specify multiple people as package maintainers. Value "Termux members @termux" will be used as default for that field which can be overridden on per-package basis if needed. %ci:no-build
17 lines
592 B
Bash
17 lines
592 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.mirbsd.org/mksh.htm
|
|
TERMUX_PKG_DESCRIPTION="The MirBSD Korn Shell - an enhanced version of the public domain ksh"
|
|
TERMUX_PKG_LICENSE="Public Domain"
|
|
TERMUX_PKG_VERSION=59
|
|
TERMUX_PKG_SRCURL=https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${TERMUX_PKG_VERSION/./}.tgz
|
|
TERMUX_PKG_SHA256=592a28ba67bea8a285f003d7a5d21b65e718546c8fcb375d7d696f3d5dd390ba
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
sh Build.sh -r
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 mksh "$TERMUX_PREFIX"/bin/mksh
|
|
install -Dm600 mksh.1 "$TERMUX_PREFIX"/share/man/man1/mksh.1
|
|
}
|