cruxports/oksh/Pkgfile

21 lines
422 B
Plaintext
Raw Normal View History

2022-02-05 20:39:19 +00:00
# Description: portable Korn shell from OpenBSD
# URL: https://github.com/ibara/oksh
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-11-27 15:33:29 +00:00
# Depends on: ncurses
2022-02-05 20:39:19 +00:00
name=oksh
2022-11-27 15:33:29 +00:00
version=7.2
2022-02-05 20:39:19 +00:00
release=1
source=(https://github.com/ibara/$name/releases/download/$name-$version/$name-$version.tar.gz)
build () {
cd $name-$version
2022-11-27 15:33:29 +00:00
./configure --prefix=/usr
2022-02-05 20:39:19 +00:00
make
make DESTDIR=$PKG install
cd $PKG/usr/bin
ln -s oksh ksh
cd -
}