blob: 2f13eebbbfbc66d5d43344938fd2401b4eba6b84 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Another Calendar-based Tarsnap Script"
HOMEPAGE="https://github.com/alexjurkiewicz/acts"
SRC_URI="https://github.com/alexjurkiewicz/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="app-backup/tarsnap"
DEPEND=""
src_compile() {
true;
}
src_install() {
dobin acts
dodoc acts.conf.sample README.rst
docinto "contrib"
dodoc contrib/acts-pre.sh contrib/acts-post.sh
docompress -x /usr/share/doc/${PF}/contrib
}
pkg_postinst() {
if [ ! -f "${EROOT}/etc/acts.conf" ]; then
ewarn "You must configure ACTS by creating a configuration in:"
ewarn " ${EPREFIX}/etc/acts.conf"
ewarn ""
ewarn "A sample configuration has been installed to"
ewarn " ${EPREFIX}/usr/share/doc/${PF}/acts.conf.sample"
fi
}
|