28 lines
925 B
Bash
28 lines
925 B
Bash
#!/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=jobo-setup
|
|
pkgdesc='Post Install joborun setup script - The script will not alter your system, you will!'
|
|
pkgver=0.3
|
|
pkgrel=01
|
|
groups=( jobbase )
|
|
arch=(x86_64)
|
|
source=('joborun-setup'
|
|
'README.txt')
|
|
depends=('zsh')
|
|
|
|
package() {
|
|
cd "$pkgdir"
|
|
install -Dm644 $srcdir/README.txt "$pkgdir/root/README.txt"
|
|
install -Dm755 $srcdir/joborun-setup "$pkgdir/usr/local/bin/joborun-setup"
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
sha256sums=(d3f7e368f445178b5ff53d458bea5f981d7141a803949ec93c0aa58b8a545327 # joborun-setup
|
|
5c57b7e372ce103afa24acfd4479a85c80c6980e06d580d5bee6c6b3f24174ab) # README.txt
|
|
|