+++ /dev/null
-drwxr-xr-x root/root bin/
--rwxr-xr-x root/root bin/bash
-drwxr-xr-x root/root etc/
--rw-r--r-- root/root etc/profile
-drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/share/
-drwxr-xr-x root/root usr/share/man/
-drwxr-xr-x root/root usr/share/man/man1/
--rw-r--r-- root/root usr/share/man/man1/bash.1.gz
+++ /dev/null
-6d9519d872f09b8cc5e001c9bd9ff2e6 bash-4.4.19.patch.gz
-148888a7c95ac23705559b6f477dfe25 bash-4.4.tar.gz
-be4c698ea8bb7d52eab2d6ce2c3fab8e profile
+++ /dev/null
-# Description: An sh-compatible command language interpreter
-# URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
-# Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
-# Depends on: ncurses readline
-
-name=bash
-version=4.4.19
-release=1
-source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
- $name-$version.patch.gz profile)
-
-build() {
- cd $name-${version:0:3}
-
- gunzip -c $SRC/$name-$version.patch.gz | patch -p0
-
- ./configure --prefix=/usr \
- --build=arm-unknown-linux-gnueabihf \
- --exec-prefix= \
- --disable-nls \
- --with-curses \
- --with-installed-readline
- make -j1
-
- install -D -m 755 bash $PKG/bin/bash
- install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
- install -D -m 644 $SRC/profile $PKG/etc/profile
-}
+++ /dev/null
-#
-# /etc/profile: system-wide defaults for bash(1) login shells
-#
-
-if [ "$UID" = "0" ]; then
- export PATH="/sbin:/usr/sbin:/opt/sbin:/bin:/usr/bin:/opt/bin"
-else
- export PATH="/bin:/usr/bin:/opt/bin"
-fi
-
-if [ ! -f ~/.inputrc ]; then
- export INPUTRC="/etc/inputrc"
-fi
-
-export LESS="-R"
-export PS1="\[\033[1m\]\\$ \[\033[0m\]"
-export PS2="\[\033[1m\]> \[\033[0m\]"
-
-umask 022
-
-# End of file