summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3a5e9044ebc4b5958eadd185561adb086ea1b343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Maintainer: gavin lyons <glyons66@hotmail.com>
# https://github.com/gavinlyonsrepo/cylon
pkgname=cylon
pkgver=2.1
pkgrel=9
epoch=
pkgdesc="Maintenance , backup and system checks in a menu driven  Bash script"
arch=('any')
url="https://github.com/gavinlyonsrepo/cylon"
license=('GPL')
makedepends=('git')
optdepends=(
  'cower: AUR package for AUR work'
  'gdrive: AUR package for google drive backup'
  'lostfiles: AUR package for finding lost files'
  'rmlint: Finds lint and other unwanted'
  'rkhunter: finds root kits malware'
  'clamav: used for finding malware'
  'bleachbit: used for system clean'
  'gnu-netcat: used for checking network'
)
source=("git://github.com/gavinlyonsrepo/${pkgname}.git")
md5sums=('SKIP')

package() {
	cd "$srcdir/${pkgname}"
    install -D -m755 Cylon.sh "$pkgdir"/usr/bin/"${pkgname}" 
    mkdir -p "$HOME/.config/cylon/"
    install -D -m644 Readme.md "$HOME"/.config/cylon/cylonReadme.md
    install -D -m644 License.md "$pkgdir/usr/share/licenses/${pkgname}/License.md"
}