blob: 57183bfd17947b0e86f567e0b03d9800751db954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Description: Portable OpenBSD ksh
# URL: https://github.com/ibara/oksh
# Maintainer: Shokara Kou, shokara at kalli dot st
name=oksh
version=7.0
release=1
source=(https://github.com/ibara/$name/releases/download/$name-$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|