From 9e575a917e0391ca99a6349dc602c179915fc5e6 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Tue, 13 Jul 2021 17:12:05 -0400 Subject: [PATCH] oksh: new package at 6.9 --- core/busybox/checksums | 2 +- core/busybox/files/config | 2 +- core/busybox/version | 2 +- core/oksh/build | 11 +++++++++++ core/oksh/checksums | 1 + core/oksh/depends | 1 + core/oksh/post-install | 3 +++ core/oksh/sources | 1 + core/oksh/version | 1 + 9 files changed, 21 insertions(+), 3 deletions(-) create mode 100755 core/oksh/build create mode 100644 core/oksh/checksums create mode 100644 core/oksh/depends create mode 100755 core/oksh/post-install create mode 100644 core/oksh/sources create mode 100644 core/oksh/version diff --git a/core/busybox/checksums b/core/busybox/checksums index 3ca4b86..61a7edc 100644 --- a/core/busybox/checksums +++ b/core/busybox/checksums @@ -1,5 +1,5 @@ b0409da19243f364e401dc91e345e230dbcb83938a1815a788d0a549f43886d1 -52689beac0dfc519c150561619c6f60f621c73e7b9b0e4db6b1eb6d25a7e1daa +6168fe718fda28bd00456d80f0d276fbaf860b229a3ba8db71ecaa2af9f73e69 3764993c00fbae89f43b1ac991ebc96774afcd7aa663a434539a5f154c8d991e 814dea14ac612125e97dcc1d619219b2c9dfc14850bf48d858421fb2c98eca12 11fe9cdb031d0c387dfb366dc9cdbabadd129f5bbed34659868914058ada11c7 diff --git a/core/busybox/files/config b/core/busybox/files/config index d13f79f..5a83767 100644 --- a/core/busybox/files/config +++ b/core/busybox/files/config @@ -12,7 +12,7 @@ CONFIG_DESKTOP=y # CONFIG_EXTRA_COMPAT is not set # CONFIG_FEDORA_COMPAT is not set CONFIG_INCLUDE_SUSv2=y -CONFIG_LONG_OPTS=y +CONFIG_LONG_OPTS=n CONFIG_SHOW_USAGE=y CONFIG_FEATURE_VERBOSE_USAGE=y CONFIG_FEATURE_COMPRESS_USAGE=y diff --git a/core/busybox/version b/core/busybox/version index d991ae9..a2e6ee1 100644 --- a/core/busybox/version +++ b/core/busybox/version @@ -1 +1 @@ -1.33.1 4 +1.33.1 5 diff --git a/core/oksh/build b/core/oksh/build new file mode 100755 index 0000000..8cfff78 --- /dev/null +++ b/core/oksh/build @@ -0,0 +1,11 @@ +#!/usr/bin/sh -e + +./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --mandir=/usr/share/man \ + --enable-ksh \ + --enable-sh + +make +make DESTDIR="$1" install diff --git a/core/oksh/checksums b/core/oksh/checksums new file mode 100644 index 0000000..9e3d1ce --- /dev/null +++ b/core/oksh/checksums @@ -0,0 +1 @@ +c08d97b2ac9ee5d88e9e508d27c75502b2d06c20d4c5ab87b496cb3b9951bd35 diff --git a/core/oksh/depends b/core/oksh/depends new file mode 100644 index 0000000..6a470ff --- /dev/null +++ b/core/oksh/depends @@ -0,0 +1 @@ +ncurses diff --git a/core/oksh/post-install b/core/oksh/post-install new file mode 100755 index 0000000..c8b4afc --- /dev/null +++ b/core/oksh/post-install @@ -0,0 +1,3 @@ +#!/bin/sh -e + +grep -qFx /usr/bin/ksh /etc/shells || printf /usr/bin/ksh\\n >> /etc/shells diff --git a/core/oksh/sources b/core/oksh/sources new file mode 100644 index 0000000..67e2b3a --- /dev/null +++ b/core/oksh/sources @@ -0,0 +1 @@ +https://github.com/ibara/oksh/releases/download/oksh-6.9/oksh-6.9.tar.gz diff --git a/core/oksh/version b/core/oksh/version new file mode 100644 index 0000000..3957d4e --- /dev/null +++ b/core/oksh/version @@ -0,0 +1 @@ +6.9 1 -- 2.39.2