32 lines
922 B
Bash
32 lines
922 B
Bash
# Template file for 'loksh'
|
|
pkgname=loksh
|
|
version=6.7.2
|
|
revision=1
|
|
wrksrc=loksh
|
|
build_style=meson
|
|
hostmakedepends="pkg-config"
|
|
makedepends="ncurses-devel"
|
|
short_desc="Linux port of OpenBSD's ksh"
|
|
maintainer="Renato Aguiar <renato@renatoaguiar.net>"
|
|
license="custom:Public Domain"
|
|
homepage="https://github.com/dimkr/loksh"
|
|
distfiles="https://github.com/dimkr/loksh/releases/download/${version}/loksh-${version}.tar.xz"
|
|
checksum=26f667391aaeb7b1169a9b74b6c124d05dd65c472757f96e561d8ce6384ec6b5
|
|
register_shell="/bin/loksh"
|
|
|
|
alternatives="
|
|
ksh:ksh:/usr/bin/loksh
|
|
ksh:ksh.1:/usr/share/man/man1/loksh.1
|
|
sh:sh:/usr/bin/loksh
|
|
sh:sh.1:/usr/share/man/man1/loksh-sh.1
|
|
"
|
|
|
|
post_install() {
|
|
vlicense LEGAL
|
|
|
|
mv ${DESTDIR}/usr/bin/ksh ${DESTDIR}/usr/bin/loksh
|
|
mv ${DESTDIR}/usr/share/man/man1/ksh.1 \
|
|
${DESTDIR}/usr/share/man/man1/loksh.1
|
|
mv ${DESTDIR}/usr/share/man/man1/sh.1 \
|
|
${DESTDIR}/usr/share/man/man1/loksh-sh.1
|
|
}
|