39 lines
1.3 KiB
Text
39 lines
1.3 KiB
Text
|
#!/usr/bin/bash
|
||
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
||
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
||
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
||
|
# Website : https://pozol.eu
|
||
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
||
|
|
||
|
pkgname=joborun-zsh
|
||
|
pkgver=0.1
|
||
|
pkgrel=01
|
||
|
pkgdesc="joborun linux zsh dotfiles"
|
||
|
depends=('zsh')
|
||
|
optdepends=('fzf: interactive menu support')
|
||
|
conflicts=(obarun-zsh)
|
||
|
source=('zshrc' 'zshenv' 'LICENSE')
|
||
|
backup=('etc/skel/.zshrc' 'etc/skel/.zshenv' 'etc/.zshrc' 'etc/.zshenv')
|
||
|
|
||
|
package() {
|
||
|
|
||
|
install -D -m644 zshrc ${pkgdir}/etc/skel/.zshrc
|
||
|
install -D -m644 zshenv ${pkgdir}/etc/skel/.zshenv
|
||
|
install -D -m644 zshrc ${pkgdir}/etc/.zshrc
|
||
|
install -D -m644 zshenv ${pkgdir}/etc/.zshenv
|
||
|
install -Dm 0644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||
|
}
|
||
|
|
||
|
#---- arch license gpg-key & sha256sums ----
|
||
|
|
||
|
arch=(x86_64)
|
||
|
|
||
|
license=('ISC')
|
||
|
|
||
|
sha256sums=(5018a8ddfc499046bac0d8622cd010205ef19b037abe83610d3b0c94c9c1be23 # zshrc
|
||
|
8ac0385e200d8a84af3292e07b76df9099466b38002c8205d1f6ffbcd4c6a500 # zshenv
|
||
|
195e676caf3df75edf2e07c6ab1760914e36e40df6a28c1a6d0737180c0d771b) # LICENSE
|
||
|
|
||
|
## ced1a8c7da54ce89dfa5ea987bd32f6ba5a6b9208d80537605c49693e1790bdb joborun-zsh-0.1-01-x86_64.pkg.tar.lz
|
||
|
|