# Contributor: Phillip Smith <fukawi2@NO-SPAM.gmail.com>

pkgname=mysql-backup
pkgver=2.6
pkgrel=1
pkgdesc="Automatic rolling backups for MySQL. Note this is a MODIFIED version of the original script."
arch=('any')
url="http://sourceforge.net/projects/automysqlbackup/"
license=('GPL')
depends=('tar' 'coreutils' 'gzip')
backup=('etc/mysql-backup/options.conf')
optdepends=('bzip2')
install="$pkgname.install"
source=("http://aur.archlinux.org/packages/mysql-backup/mysql-backup/mysql-backup"
        "http://aur.archlinux.org/packages/mysql-backup/mysql-backup/options.conf")
md5sums=('4c3d592b8c4b4ba5da79e03d53bf4db1'
         '5840cc098e6c6cabac64112399baf367')

build() {
  msg "Nothing to compile for $pkgname"
}

package() {
	install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname || return 1
	install -Dm600 options.conf $pkgdir/etc/$pkgname/options.conf || return 1
}

# vim:set ts=2 sw=2 et:
