pakur.sh 560 B

123456789101112131415
  1. make DESTDIR="$PKG" install
  2. ln -s bash "$PKG/usr/bin/sh"
  3. # sistem geneli ayar dosyaları
  4. install -Dm644 $SRC/system.bashrc "$PKG/etc/bash.bashrc"
  5. install -Dm644 $SRC/system.bash_logout "$PKG/etc/bash.bash_logout"
  6. # kullanıcı skel ayarları
  7. install -dm755 "$PKG/etc/skel/"
  8. install -m644 $SRC/dot.bashrc "$PKG/etc/skel/.bashrc"
  9. install -m644 $SRC/dot.bash_profile "$PKG/etc/skel/.bash_profile"
  10. install -m644 $SRC/dot.bash_logout "$PKG/etc/skel/.bash_logout"
  11. echo "exec /usr/bin/bash --login +h" > $PKG/usr/bin/bash_refresh
  12. chmod +x $PKG/usr/bin/bash_refresh