mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
sys-process/pipectl: new package, add 0.5.0
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
This commit is contained in:
1
sys-process/pipectl/Manifest
Normal file
1
sys-process/pipectl/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST pipectl-0.5.0.tar.gz 18417 BLAKE2B 751e33df920aca92c1d4831c836d16625d9980351416ce32ab2571b0366562ad3194a75f42753008f2cf74fab5d860a4e4b38abffa8e87b6cf4ffd3e0b6210b8 SHA512 84caad4bee1cf831b631a9e1ccbf648c98f3e3cc5e2e0bee9fad5046804172de29e54406eb9e56d3741890a1273bf8f6e1520ca0a7a7ad7183c30ab5bd90e21d
|
||||
11
sys-process/pipectl/metadata.xml
Normal file
11
sys-process/pipectl/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>rolferen@gmail.com</email>
|
||||
<name>Mazunki Hoksaas</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">Ferdi265/pipectl</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
33
sys-process/pipectl/pipectl-0.5.0.ebuild
Normal file
33
sys-process/pipectl/pipectl-0.5.0.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="a simple named pipe management utility"
|
||||
HOMEPAGE="https://github.com/Ferdi265/pipectl"
|
||||
SRC_URI="https://github.com/Ferdi265/pipectl/releases/download/v${PV}/pipectl-${PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="man"
|
||||
|
||||
DEPEND="
|
||||
man? (
|
||||
app-text/scdoc
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
-DBUILD_DOCUMENTATION=$(usex man)
|
||||
-DINSTALL_DOCUMENTATION=$(usex man)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user