cruxports/oksh/Pkgfile

21 lines
432 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
# Depends on:
name=oksh
2022-08-06 13:53:32 +00:00
version=7.1
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
./configure --prefix=/usr --disable-curses
make
make DESTDIR=$PKG install
cd $PKG/usr/bin
ln -s oksh ksh
cd -
}