1 # Contributor: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 pkgname=filesystem-backup
5 pkgdesc="Automatic rolling backups to a mounted disk"
7 url="http://fukawi2.nl/index.php?page=code-filesystem-backup"
9 depends=(tar coreutils gzip)
10 backup=('etc/filesystem-backup/backup.exclude' 'etc/filesystem-backup/backup.include' 'etc/filesystem-backup/options.conf')
12 install=$pkgname.install
13 source=(filesystem-backup options.conf backup.include backup.exclude)
14 md5sums=('2a4f54f716ef6929c16ebaa3d66631fe'
15 '28ad6f03ecf932b1fff65c4ffa4525ab'
16 'aece9dc359346a2592512b958dfef21b'
17 'd41d8cd98f00b204e9800998ecf8427e')
20 msg "Nothing to compile for $pkgname"
24 install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname || return 1
25 install -Dm640 options.conf $pkgdir/etc/$pkgname/options.conf || return 1
26 install -Dm640 backup.include $pkgdir/etc/$pkgname/backup.include || return 1
27 install -Dm640 backup.exclude $pkgdir/etc/$pkgname/backup.exclude || return 1
30 # vim:set ts=2 sw=2 et: