Search Criteria
Package Details: ndpi 4.8-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/ndpi.git (read-only, click to copy) |
---|---|
Package Base: | ndpi |
Description: | Open and Extensible GPLv3 Deep Packet Inspection Library |
Upstream URL: | http://www.ntop.org/products/ndpi/ |
Licenses: | GPL3 |
Conflicts: | ndpi-svn |
Submitter: | robertfoster |
Maintainer: | robertfoster |
Last Packager: | robertfoster |
Votes: | 9 |
Popularity: | 0.000952 |
First Submitted: | 2013-03-21 15:53 (UTC) |
Last Updated: | 2024-02-13 17:47 (UTC) |
Dependencies (7)
- libcap
- json-c (json-c-gitAUR) (make)
- libmaxminddb (libmaxminddb-gitAUR) (make)
- libpcap (libpcap-gitAUR) (make)
- numactl (numactl-gitAUR) (make)
- pcre2 (pcre2-gitAUR) (make)
- rrdtool (make)
Latest Comments
D3vil0p3r commented on 2024-04-21 19:32 (UTC) (edited on 2024-04-21 19:34 (UTC) by D3vil0p3r)
The current PKGBUILD is wrong. After the install, you will get a dir path like
/usr/usr/include
and/usr/usr/lib
.lnslbrty commented on 2021-07-26 09:43 (UTC)
Hey Robert,
there is a new nDPI upstream release: 4.0
I've prepared a small patch that also brings some consistency in lib depends.
diff --git a/PKGBUILD b/PKGBUILD index a666ab0..ee5679a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,12 +1,13 @@ # Maintainer: robertfoster
pkgname=ndpi -pkgver=3.4 -pkgrel=2 +pkgver=4.0 +pkgrel=1 pkgdesc="Open and Extensible GPLv3 Deep Packet Inspection Library" arch=('i686' 'x86_64') url="http://www.ntop.org/products/ndpi/" license=('GPL3') +depends=('libgcrypt' 'libmaxminddb') conflicts=('ndpi-svn') options=() source=("https://github.com/ntop/nDPI/archive/${pkgver}.tar.gz") @@ -15,7 +16,7 @@ build() { cd "${srcdir}/nDPI-${pkgver}" unset CPPFLAGS ./autogen.sh - ./configure --prefix=/usr --with-pic --includedir=/usr/include --libdir=/usr/lib + ./configure --prefix=/usr --with-pic --includedir=/usr/include --libdir=/usr/lib --with-maxminddb make }
@@ -26,4 +27,4 @@ package() { "${pkgdir}/usr/include/libndpi" }
-md5sums=('4a2978b0d527a220ab46344444a1934c') +md5sums=('533296eb09ab27499b6881f3411aa22b')
aperez commented on 2018-10-23 11:06 (UTC)
Version 2.4 cannot be built, it seems that something has changed in the build system upstream:
aperez commented on 2016-01-09 00:51 (UTC)
pcxmac commented on 2013-12-13 19:11 (UTC)
Xemertix commented on 2013-10-20 10:47 (UTC)