ports: Add libwind port

This commit is contained in:
apio 2024-03-31 13:40:01 +02:00
parent 898eb43360
commit 7205020bac
Signed by: apio
GPG Key ID: B8A7D06E42258954
2 changed files with 27 additions and 0 deletions

View File

@ -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

26
ports/libwind/PACKAGE Normal file
View File

@ -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
}