mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 22:53:31 +02:00
Signed-off-by: Filip Kobierski <fkobi@pm.me> From: https://github.com/gentoo/gentoo/pull/37849 Signed-off-by: Zac Medico <zmedico@gentoo.org>
34 lines
850 B
Bash
34 lines
850 B
Bash
# Copyright 2022-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit go-module systemd
|
|
|
|
DESCRIPTION="A frp server plugin to support multiple users for frp"
|
|
HOMEPAGE="https://github.com/gofrp/fp-multiuser"
|
|
SRC_URI="https://github.com/gofrp/fp-multiuser/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
|
|
|
|
LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
acct-user/fp-multiuser
|
|
acct-group/fp-multiuser"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_compile() {
|
|
emake all
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/${PN}
|
|
keepdir /etc/${PN}
|
|
systemd_dounit "${FILESDIR}/fp-multiuser.service"
|
|
newinitd "${FILESDIR}/initd" "${PN}"
|
|
newconfd "${FILESDIR}/confd" "${PN}"
|
|
insinto /etc/logrotate.d
|
|
newins "${FILESDIR}/logrotated" "${PN}"
|
|
dodoc README*.md
|
|
}
|