mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
also remove "A " from DESCRIPTION Signed-off-by: Filip Kobierski <fkobi@pm.me> Part-of: https://github.com/gentoo/gentoo/pull/42047 Signed-off-by: Sam James <sam@gentoo.org>
25 lines
469 B
Bash
25 lines
469 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Tool for manipulating SOCKS5 servers"
|
|
HOMEPAGE="http://www.qwirx.com/"
|
|
SRC_URI="http://www.qwirx.com/piper/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
src_compile() {
|
|
append-flags -g -Wall
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin piper
|
|
dodoc README
|
|
}
|