lib32-libnl-git
LOW
maintainer Orion-zhen
0 votes
scanned 2026-09-08 13:17:19.099707
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Orion-zhen <https://github.com/Orion-zhen>
2
# Contributor: Sven-Hendrik Haase <svenstaro@archlinux.org>
3
# Contributor: Maximilian Stein <maxarchpkgbuild@hmamail.com>
4
# Contributor: josephgbr <rafael.f.f1@gmail.com>
5
# Contributor: Taylor Lookabaugh <jesus.christ.i.love@gmail.com>
6
7
_pkgbase=libnl
8
pkgname=lib32-${_pkgbase}-git
9
pkgver=3.12.0.r8.g655a638
10
pkgrel=1
11
provides=("${pkgname%-git}")
12
conflicts=("${pkgname%-git}")
13
pkgdesc="Library for applications dealing with netlink sockets (32 bit)"
14
arch=('x86_64')
15
url='https://github.com/thom311/libnl/'
16
license=('LGPL-2.1-only')
17
depends=('lib32-glibc' "${_pkgbase}")
18
makedepends=('git' 'gcc-multilib')
19
source=("git+https://github.com/thom311/libnl.git")
20
sha256sums=('SKIP')
21
22
pkgver() {
23
cd "${_pkgbase}"
24
git describe --long --tags --match 'libnl*' --abbrev=7 | \
25
sed 's/^libnl//;s/\([^-]*-g\)/r\1/;s/-/./g;s/_/./g'
26
}
27
28
prepare() {
29
cd "${_pkgbase}"
30
./autogen.sh
31
}
32
33
build() {
34
export CC='gcc -m32'
35
export CXX='g++ -m32'
36
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
37
38
cd "${_pkgbase}"
39
./configure \
40
--prefix=/usr \
41
--sysconfdir=/etc \
42
--sbindir=/usr/bin \
43
--disable-static \
44
--libdir=/usr/lib32
45
make
46
}
47
48
package() {
49
cd "${_pkgbase}"
50
make DESTDIR="${pkgdir}" install
51
rm -rf "${pkgdir}"/{etc,usr/{bin,include,share}}
52
}
53
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-08 13:17:19 | Low | 1 |