From 7205020bac1cdfa04f0580e2fe42d1e718e18b53 Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 31 Mar 2024 13:40:01 +0200 Subject: [PATCH] ports: Add libwind port --- ports/README.md | 1 + ports/libwind/PACKAGE | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ports/libwind/PACKAGE diff --git a/ports/README.md b/ports/README.md index c90e2736..1f6d5d5c 100644 --- a/ports/README.md +++ b/ports/README.md @@ -15,6 +15,7 @@ bc | 6.6.0 | An implementation of the POSIX bc calculator | https://github.com/g binutils | 2.39 | The GNU suite of binary utilities | https://www.gnu.org/software/binutils gcc | 12.2.0 | The GNU Compiler Collection | https://www.gnu.org/software/gcc gmp | 6.3.0 | The GNU Multiple Precision Arithmetic Library | https://gmplib.org +libwind | 0.0.1 | A standalone implementation of the wind client protocol | https://git.cloudapio.eu/apio/libwind minitar | 1.7.5 | Tiny and easy-to-use C library to read/write tar archives | https://git.cloudapio.eu/apio/minitar mpc | 1.3.1 | The GNU Multiple Precision Complex Library | https://www.multiprecision.org mpfr | 4.2.0 | The GNU Multiple Precision Floating-Point Reliable Library | https://mpfr.org diff --git a/ports/libwind/PACKAGE b/ports/libwind/PACKAGE new file mode 100644 index 00000000..75c28805 --- /dev/null +++ b/ports/libwind/PACKAGE @@ -0,0 +1,26 @@ +# Basic information +name="libwind" +version="0.0.1" + +# Download options +format="git" +url="https://git.cloudapio.eu/apio/libwind.git" + +# Build instructions +do_configure() +{ + : +} + +do_build() +{ + cd $srcdir + make +} + +do_install() +{ + export DESTDIR=$installdir/usr + cd $srcdir + make install +}