From c21fc2a2974e5e26dbdc8ace0b5187f03cb13a28 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 23 Sep 2024 19:51:42 +0200 Subject: [PATCH] ports: Add cbench port --- ports/cbench/PACKAGE | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ports/cbench/PACKAGE diff --git a/ports/cbench/PACKAGE b/ports/cbench/PACKAGE new file mode 100644 index 00000000..f15ce605 --- /dev/null +++ b/ports/cbench/PACKAGE @@ -0,0 +1,25 @@ +# Basic information +name="cbench" +version="1.0" + +# Download options +format="git" +url="https://git.cloudapio.eu/apio/cbench.git" + +# Build instructions +do_configure() +{ + : +} + +do_build() +{ + cd $srcdir + make +} + +do_install() +{ + cd $srcdir + make DESTDIR=$DESTDIR/usr install +}