diff options
author | Wolfgang Müller | 2023-05-16 20:33:10 +0200 |
---|---|---|
committer | Wolfgang Müller | 2023-05-16 20:33:10 +0200 |
commit | 79c93bbbda7a7276aa52a5197e883f370d40a711 (patch) | |
tree | cac5698ec056bdfc86ca2fdc725e5b5187b7e1cb /app-backup/lifeboat/lifeboat-0.4.1.ebuild | |
parent | 42fbaa97282e51fc314c8416e457d5731cc8b23e (diff) | |
download | pramantha-79c93bbbda7a7276aa52a5197e883f370d40a711.tar.gz |
app-backup/lifeboat: add 0.4.1, drop 0.4.0
Diffstat (limited to 'app-backup/lifeboat/lifeboat-0.4.1.ebuild')
-rw-r--r-- | app-backup/lifeboat/lifeboat-0.4.1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-backup/lifeboat/lifeboat-0.4.1.ebuild b/app-backup/lifeboat/lifeboat-0.4.1.ebuild new file mode 100644 index 0000000..6fa2923 --- /dev/null +++ b/app-backup/lifeboat/lifeboat-0.4.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="Manage and automate local restic(1) backups" +HOMEPAGE="https://git.oriole.systems/lifeboat" +SRC_URI="https://git.oriole.systems/lifeboat/snapshot/${P}.tar.gz" + +RESTRICT="mirror" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND=" + acct-group/lifeboat + acct-user/lifeboat" + +RDEPEND="${DEPEND} + app-backup/restic + net-misc/rclone" +BDEPEND="" + +src_compile() { :; } + +src_install() { + emake PREFIX=/usr DESTDIR="${D}" install + + systemd_dounit etc/systemd/${PN}@.{service,timer} +} |