aboutsummaryrefslogtreecommitdiff
path: root/systemd-zfs-partition-backup/AUR/PKGBUILD
blob: 916f4912468dbdacb012271303166f023c3cd4ba (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
# Maintainer: Max Christian Pohle <webmaster@coderonline.de>
pkgname=systemd-zfs-partition-backup
pkgver=2020_07_11
# release number, always starts with 1
pkgrel=1
pkgdesc="automatically backup usb* drives to zfs datasets, encryption supported"
arch=('any')
url="http://git.entwicklerseite.de/zfs-auto-backup"
license=('MIT')
depends=(
  'systemd'
  'kbd'
  'mkinitcpio'
)
source=("http://git.entwicklerseite.de/zfs-bash-tools/snapshot/zfs-bash-tools-master.tar.gz")
sha256sums=('f6d9879ccffad6ceb2441cdf4c1abf70cb3bb53d717c4aaa5715973293d10c13')

package() {
    install -D zfs-bash-tools-master/${pkgname}.sh                                    ../pkg/${pkgname}/usr/bin/${pkgname}.sh
    install -D zfs-bash-tools-master/${pkgname}/systemd/max-backup\@.service          ../pkg/${pkgname}/usr/lib/systemd/system/${pkgname}.service
    install -D zfs-bash-tools-master/${pkgname}/udev/rules.d/99-max-autobackup.rules  ../pkg/${pkgname}/etc/udev/rules.d/99-${pkgname}.rules
}

# vim: ft=bash
..