mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
44 lines
793 B
Bash
44 lines
793 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake systemd readme.gentoo-r1
|
|
|
|
DESCRIPTION="A reliable, low-latency, and anti-censorship virtual private network"
|
|
HOMEPAGE="https://github.com/lanthora/candy"
|
|
SRC_URI="https://github.com/lanthora/candy/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~mips"
|
|
|
|
DEPEND="
|
|
dev-libs/poco
|
|
dev-libs/openssl
|
|
dev-libs/spdlog
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
dev-libs/libfmt
|
|
"
|
|
|
|
src_install(){
|
|
cmake_src_install
|
|
default
|
|
|
|
insinto /etc
|
|
doins candy.cfg
|
|
fperms 0644 /etc/candy.cfg
|
|
|
|
systemd_dounit candy.service
|
|
systemd_dounit candy@.service
|
|
newinitd candy.initd candy
|
|
|
|
readme.gentoo_create_doc
|
|
}
|
|
|
|
pkg_postinst() {
|
|
readme.gentoo_print_elog
|
|
}
|