# Maintainer: Pekka Helenius # Do we include server-specific files such as SSH timezone settings? server_environment=false if [[ $server_environment == "true" ]]; then pkgname=archtools-server pkgdesc="Useful scripts for Arch Linux (server)" conflicts=(archtools) else pkgname=archtools pkgdesc="Useful scripts for Arch Linux" conflicts=(archtools-server) fi pkgver=0.1 pkgrel=1 url="https://github.com/Fincer/archtools" arch=(any) license=(GPL) depends=(coreutils bash grep sed pacman # listpkg.sh, bininfo.sh, pkginfo.sh, buildpkg.sh, installlocal.sh, missinglibs.sh, nowner.sh, findpkg.sh, findinpkg.sh, pkgdeps.sh, pkgstr.sh, risks.sh, showpkg.sh perl # findpkg.sh, genmac.sh wget # getsource.sh file # nowner.sh which iputils 9base package-query # pkgdeps.sh (9base = read command) #mimetype TODO get rid of this dependency tar xz bzip2 unrar gzip unzip p7zip cabextract #extract.sh arch-audit bc # risks.sh glibc # missinglibs.sh util-linux # killprocess.sh (kill command) stderred # bash.custom LD_PRELOAD gcc ) makedepends=(git) source=( tputcolors.sh extract.sh findmatch.sh findpkg.sh findinpkg.sh genmac.sh getsource.sh # TODO: More implementation needed. See the file for details nowner.sh # TODO: More implementation needed. See the file for details pkgdeps.sh # TODO: More implementation needed. See the file for details pkgstr.sh archrisks.sh showpkg.sh deltmpfiles.sh missinglibs.sh installlocal.sh buildpkg.sh pkginfo.sh bininfo.sh listpkg.sh killprocess.sh rmpkgfiles.sh specialchars.sh whichcmd.sh killns.sh psns.sh whichport.c whichservice.c bash.custom https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS) if [[ $server_environment == "true" ]]; then # for ssh_timezone.sh depends+=(geoip2-database mmdblookup systemd openssh bind-tools) source+=(ssh_timezone.sh) fi sha256sums=('f5455279ae48739b4ce16b10061e898f80cff0c9b24100f499015cae618fb8c6' '623b794a8a537649cc434b496dbf1f018aeea99f57f11d0719f80e495ca438b6' '568dba0eb0dfe1875980484fe473bbbd4397bdc04622f6177992ee75ca1b065f' 'ed4e06ceb5aff36ea66ce9de74f5ff2236ab2f92a9419d79d6fefe5a1b013859' '60d859fead290ba0c39502a21eb093aa63b384963bf83b60d93c2fcb74655ef6' 'a3cf8e77af8a49935c3e9a579354f761ab7ca8c2f94760012b9e23a196307f8f' '6783896c716045da0e38ae11ccaac491b6166b15ef9273118dcbe662b2eca97e' 'e25a0d8b425fd3f05414b6f1f6f5fce5832bb842691dad5aff4c7ac5aaa7a9fd' '28fe6983f144e41d57589fefac6d60b84ff3b0968cc4b274276b34802ff03dd0' '67d5627b20ec75d94cb89f9f193daa8a8018d1453d387e0306c0032f5a9b6b30' 'd1427a149f7092fd2ac8e0f81167f7c4eb6a318918f96b2d5301a8b750796c5d' 'abc140033891cc4564d71e8487f6cd1e54add761417cc772652542daf7352f44' '8b76a175d7cc767519d1e3519d1fd874cc19cc529e08a27138948f8a1907ac6a' '6886176293cb3ed131dd83e2ca3aa15f70c559e265534e195fa8848f2d02f659' 'ef4574de79c82d52a2cfb57cbf19419362ab702471bd71620e5893f426d150e2' 'ac761aa82d3a369a3f5335ad8f38af6cd00181cacf24737080e6d6ed6fff1b18' '63a7b50faba7963584519f2800205d853cc02d6386362c9efd9f61154e4c9ddb' 'aa0b96ff9f1ff51e1ea3634fa7e17cbffa565c5b2db79ed75bd6aeeb9de9a723' 'fc87bd14c0638cd3c803143c371946efe2c96a87d72d2c144fbaf29a815294d3' '4baf8c7d1032cafb8535dc4d53c42b7e7f2da6839bde791c31104a3f67eb845b' 'e179f9b18d6869558a97530101502ae6b445d3ef430e2e4359d015f214292093' '1aae9db8652179e18691fd51c687ab393672f380084e8777145572a5699bf5cf' '93ee0e990f36a5641e4f9fb4ba851e3db47ff6f01fdfad8dd169b83c546ecae9' '40fd211e7b4a21ca61be81a809ee47f58adc6cd220218a20a0c7e65e1534c6ca') package() { mkdir -p "$pkgdir"/{usr/bin,etc} #cp -R "$srcdir"/"$pkgname"/*.sh "$pkgdir"/usr/bin/ install -m644 "$srcdir"/LS_COLORS "$pkgdir"/etc/dircolors install -m644 "$srcdir"/bash.custom "$pkgdir"/etc/bash.custom for sh in ./*.sh; do install -m755 $sh "$pkgdir"/usr/bin/ #chmod u=rwx,g=rx,o=rx $sh mv "$pkgdir"/usr/bin/$sh $(echo "$pkgdir"/usr/bin/$sh | sed 's/\.sh//') done for i in ./*.c; do gcc $i -o $(echo $i | sed 's/\.c$//') install -m755 $i "$pkgdir"/usr/bin/ done msg2 ' In /etc/bash.bashrc file, replace line PS1="[\\u@\\h \\W]\\$ " with [[ -f /etc/bash.custom ]] && . /etc/bash.custom || PS1="[\\u@\\h \\W]\\$ " After that, you can change bash settings globally by editing /etc/bash.custom file ' #msg2 "You can change bash settings globally by editing /etc/bash.custom file" }