diff options
Diffstat (limited to 'repo/core/bash.xibuild')
-rw-r--r-- | repo/core/bash.xibuild | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/repo/core/bash.xibuild b/repo/core/bash.xibuild deleted file mode 100644 index 5b5afd0..0000000 --- a/repo/core/bash.xibuild +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -DEPS=(readline glibc ncurses) - -SOURCE=https://git.savannah.gnu.org/git/bash.git -DESC="The free Bourne Again Shell" - -build () { - ./configure --without-bash-malloc --prefix=/usr - make - make DESTDIR=$PKG_DEST install -} - -package () { - ln $PKG_DEST/usr/bin/bash $PKG_DEST/usr/bin/sh -} - |