From c4e0c314e6eac6964328c9c3daeaa232ea06e965 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 2 Oct 2021 15:36:06 +0100 Subject: rename --- psibuilds/bash.psibuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 psibuilds/bash.psibuild (limited to 'psibuilds') diff --git a/psibuilds/bash.psibuild b/psibuilds/bash.psibuild new file mode 100644 index 0000000..9a5d1af --- /dev/null +++ b/psibuilds/bash.psibuild @@ -0,0 +1,19 @@ +#!/bin/bash + +DEPS=(readline libreadline.so=8-64 glibc ncurses) + +fetch () { + git clone https://git.savannah.gnu.org/git/bash.git +} + +build () { + cd bash + ./configure --without-bash-malloc --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} + +package () { + echo "packaged" +} + -- cgit v1.2.1