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/libnl/.gitignore vendored Normal file
View File

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

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

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

18
src/libnl/pkg.sh Normal file
View File

@@ -0,0 +1,18 @@
NAME="libnl"
DESC="Collection of libraries providing APIs to netlink protocol based Linux kernel interfaces"
VERSION="3.7.0"
FILES=("https://github.com/thom311/libnl/releases/download/libnl3_7_0/libnl-$VERSION.tar.gz")
HASHES=("b381405afd14e466e35d29a112480333")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr \
--sysconfdir=/etc \
--disable-static
make && make DESTDIR=$ROOTDIR install
cd .. && rm -rf $NAME-$VERSION
}