ports: Add libwind port
This commit is contained in:
parent
898eb43360
commit
7205020bac
@ -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
|
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
|
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
|
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
|
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
|
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
|
mpfr | 4.2.0 | The GNU Multiple Precision Floating-Point Reliable Library | https://mpfr.org
|
||||||
|
26
ports/libwind/PACKAGE
Normal file
26
ports/libwind/PACKAGE
Normal 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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user