summaryrefslogtreecommitdiff
path: root/repo/system/libnl
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/system/libnl
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/system/libnl')
-rw-r--r--repo/system/libnl/libnl.xibuild27
1 files changed, 0 insertions, 27 deletions
diff --git a/repo/system/libnl/libnl.xibuild b/repo/system/libnl/libnl.xibuild
deleted file mode 100644
index 7ea18ba..0000000
--- a/repo/system/libnl/libnl.xibuild
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make tar gzip"
-DEPS="musl"
-
-PKG_VER=3.5.0
-SOURCE=https://github.com/thom311/libnl/releases/download/libnl$(echo $PKG_VER | sed 's/\./_/g')/libnl-$PKG_VER.tar.gz
-ADDITIONAL="
- https://github.com/thom311/libnl/releases/download/libnl$(echo $PKG_VER | sed 's/\./_/g')/libnl-doc-$PKG_VER.tar.gz
-"
-
-DESC="Library for applications dealing with netlink sockets"
-
-build () {
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --disable-static &&
- make
-}
-
-package () {
- make DESTDIR=$PKG_DEST install
-
- mkdir -p $PKG_DEST/usr/share/doc/libnl-$PKG_VER &&
- /usr/bin/tar -xf libnl-doc-$PKG_VER.tar.gz --strip-components=1 --no-same-owner \
- -C $PKG_DEST/usr/share/doc/libnl-$PKG_VER
-}