mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 21:43:03 -04:00
43 lines
899 B
Bash
43 lines
899 B
Bash
# Copyright 2019-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
VALA_MIN_API_VERSION="0.44"
|
|
inherit vala xdg
|
|
|
|
DESCRIPTION="A system restore utility for Linux"
|
|
HOMEPAGE="https://github.com/teejee2008/timeshift"
|
|
SRC_URI="https://github.com/teejee2008/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-libs/json-glib
|
|
dev-libs/libgee
|
|
dev-util/desktop-file-utils
|
|
net-libs/libsoup
|
|
net-misc/rsync
|
|
sys-process/cronie
|
|
x11-libs/gtk+:3
|
|
x11-libs/xapp
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
$(vala_depend)
|
|
net-misc/rsync
|
|
sys-apps/diffutils
|
|
sys-apps/coreutils
|
|
sys-fs/btrfs-progs
|
|
>=x11-libs/vte-0.60.3[vala]
|
|
"
|
|
|
|
src_prepare() {
|
|
# sed -i -e "s:--thread:& Core/AppExcludeEntry.vala:" "src/makefile"
|
|
sed -i -e "s:valac:valac-$(vala_best_api_version):" "src/makefile"
|
|
vala_src_prepare
|
|
default
|
|
}
|