mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
30 lines
833 B
Plaintext
30 lines
833 B
Plaintext
# Contributor: Matthew T Hoare <matthew.t.hoare@gmail.com>
|
|
# Maintainer: Matthew T Hoare <matthew.t.hoare@gmail.com>
|
|
pkgname=oksh
|
|
pkgver=7.3
|
|
pkgrel=1
|
|
pkgdesc="Portable OpenBSD ksh, based on the Public Domain KornShell (pdksh)"
|
|
url="https://github.com/ibara/oksh"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
options="!check" # no checks
|
|
install="$pkgname.post-install $pkgname.post-upgrade $pkgname.pre-deinstall"
|
|
makedepends="ncurses-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/ibara/oksh/releases/download/oksh-$pkgver/oksh-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--bindir=/bin \
|
|
--mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
4e7cf2914ed16d14edbff4ba1a96db196ecde34171e77603e68ae8a81b3675ac61c2ae95da85c017566655b6a5a7ad38191526e5bcedf927cdbdc1f6bc76c967 oksh-7.3.tar.gz
|
|
"
|