diff options
author | davidovski <david@davidovski.xyz> | 2022-06-03 13:05:13 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-03 13:05:13 +0100 |
commit | 66c326b6d65388e9f1003715ad9675505f01f9d2 (patch) | |
tree | 40d7355cccfa3464902cf339a563e744c28a7101 /repo/oksh/oksh.xibuild | |
parent | fccdaa986f67f820df2914bef851d5fed77abac8 (diff) |
added porting from alpine linux
Diffstat (limited to 'repo/oksh/oksh.xibuild')
-rw-r--r-- | repo/oksh/oksh.xibuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/oksh/oksh.xibuild b/repo/oksh/oksh.xibuild new file mode 100644 index 0000000..eafaab7 --- /dev/null +++ b/repo/oksh/oksh.xibuild @@ -0,0 +1,21 @@ +#!/bin/sh + +NAME="oksh" +DESC="Portable OpenBSD ksh, based on the Public Domain KornShell (pdksh)" + +MAKEDEPS="make " +DEPS="sbase musl " + +PKG_VER=7.1 +SOURCE="https://github.com/ibara/oksh/archive/oksh-$PKG_VER.tar.gz" + +build () { + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |