first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libev/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libev/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 4.33
First version

17
src/libev/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="libev"
DESC="High-performance event loop library that is loosely modelled after libevent"
VERSION="4.33"
FILES=("http://dist.schmorp.de/libev/libev-$VERSION.tar.gz")
HASHES=("c662a65360115e0b2598e3e8824cf7b33360c43a96ac9233f6b6ea2873a10102551773cad0e89e738541e75af9fd4f3e3c11cd2f251c5703aa24f193128b896b")
DEPENDS=("glibc")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
rm "$ROOTDIR/usr/include/event.h"
cd .. && rm -r $NAME-$VERSION
}