From d9f43cb2e094fcc2dbbc061c1387978b126f2dd8 Mon Sep 17 00:00:00 2001 From: Stacy Harper Date: Mon, 9 May 2022 21:03:56 +0200 Subject: [PATCH] testing/pipectl: new aports --- testing/pipectl/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/pipectl/APKBUILD diff --git a/testing/pipectl/APKBUILD b/testing/pipectl/APKBUILD new file mode 100644 index 00000000000..c46242d606a --- /dev/null +++ b/testing/pipectl/APKBUILD @@ -0,0 +1,26 @@ +# Maintainer: Stacy Harper +pkgname=pipectl +pkgver=0.3.0 +pkgrel=0 +pkgdesc="A simple named pipe management utility" +url="https://github.com/Ferdi265/pipectl" +license="GPL-3.0-or-later" +arch="all" +makedepends="cmake samurai" +source="https://github.com/Ferdi265/pipectl/archive/v$pkgver/pipectl-$pkgver.tar.gz" +options="!check" # no test suite + +build() { + cmake -B build -G Ninja \ + -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_INSTALL_PREFIX=/usr + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +} + +sha512sums=" +fc54c68e828d6664b7c9fc6700dc89722613fa87572ad0f36ed5e4e5604decaa40918ff856a9d541adb4bcf4e7c54e65b5f7211ea8ae9366de345b9fc6f5c748 pipectl-0.3.0.tar.gz +"