diff options
author | davidovski <david@davidovski.xyz> | 2021-10-02 15:36:06 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-02 15:36:06 +0100 |
commit | c4e0c314e6eac6964328c9c3daeaa232ea06e965 (patch) | |
tree | 3487ee837ea8927ceaf5c26fe54461422e01a21a /psibuilds | |
parent | 5f7bf349b6280e52f6671e9fb02e0c530b167165 (diff) |
rename
Diffstat (limited to 'psibuilds')
-rw-r--r-- | psibuilds/bash.psibuild | 19 |
1 files changed, 19 insertions, 0 deletions
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" +} + |