tlstun-1.1.0.ebuild - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
tlstun-1.1.0.ebuild (548B)
---
1 # Copyright 1999-2025 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 EAPI=8
5
6 inherit go-module
7
8 DESCRIPTION="Simple Go program to add TLS support to other TCP listeners"
9 HOMEPAGE="https://github.com/parazyd/tlstun"
10 SRC_URI="https://github.com/parazyd/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
11
12 LICENSE="AGPL-3"
13 SLOT="0"
14 KEYWORDS="~amd64"
15
16 src_compile() {
17 ego build
18 }
19
20 src_install() {
21 dobin tlstun
22 dodoc "README.md"
23 doinitd "${FILESDIR}/initd/${PN}"
24 doconfd "${FILESDIR}/confd/${PN}"
25
26 default
27 }