diff options
author | Max Christian Pohle | 2020-07-11 14:11:07 +0200 |
---|---|---|
committer | Max Christian Pohle | 2020-07-11 14:11:07 +0200 |
commit | 76e0da0ef07a921e27b12a447692d1e952d922f4 (patch) | |
tree | 656932887f776bb0f838ce86ab8d4d16f430b097 /systemd-zfs-partition-backup/AUR/PKGBUILD | |
parent | d9804a00d1d2164f5c25d743d18bd4f6a8776f31 (diff) | |
download | zfs-bash-tools-76e0da0ef07a921e27b12a447692d1e952d922f4.tar.bz2 zfs-bash-tools-76e0da0ef07a921e27b12a447692d1e952d922f4.zip |
Spring cleaning
Diffstat (limited to 'systemd-zfs-partition-backup/AUR/PKGBUILD')
-rw-r--r-- | systemd-zfs-partition-backup/AUR/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/systemd-zfs-partition-backup/AUR/PKGBUILD b/systemd-zfs-partition-backup/AUR/PKGBUILD new file mode 100644 index 0000000..f9d7315 --- /dev/null +++ b/systemd-zfs-partition-backup/AUR/PKGBUILD | |||
@@ -0,0 +1,24 @@ | |||
1 | # Maintainer: Max Christian Pohle <webmaster@coderonline.de> | ||
2 | pkgname=systemd-zfs-partition-backup | ||
3 | pkgver=2020_07_11 | ||
4 | # release number, always starts with 1 | ||
5 | pkgrel=1 | ||
6 | pkgdesc="automatically backup usb* drives to zfs datasets, encryption supported" | ||
7 | arch=('any') | ||
8 | url="http://git.entwicklerseite.de/zfs-auto-backup" | ||
9 | license=('MIT') | ||
10 | depends=( | ||
11 | 'systemd' | ||
12 | 'kbd' | ||
13 | 'mkinitcpio' | ||
14 | ) | ||
15 | source=("http://git.entwicklerseite.de/zfs-bash-tools/snapshot/zfs-bash-tools-master.tar.bz2") | ||
16 | sha256sums=('a734c145709687c5621f430d3baec3105977984dfbb35348beab4b793aeb8e1b') | ||
17 | |||
18 | package() { | ||
19 | install -D zfs-bash-tools-master/${pkgname}.sh ../pkg/${pkgname}/usr/bin/${pkgname}.sh | ||
20 | install -D zfs-bash-tools-master/${pkgname}/systemd/max-backup\@.service ../pkg/${pkgname}/usr/lib/systemd/system/${pkgname}.service | ||
21 | install -D zfs-bash-tools-master/${pkgname}/udev/rules.d/99-max-autobackup.rules ../pkg/${pkgname}/etc/udev/rules.d/99-${pkgname}.rules | ||
22 | } | ||
23 | |||
24 | # vim: ft=bash | ||