Date: Saturday, June 1, 2019 @ 13:04:55 Author: juergen Revision: 354683
upgpkg: kismet 2019_05_R2-1 Modified: kismet/trunk/PKGBUILD ----------+ PKGBUILD | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-06-01 12:57:46 UTC (rev 354682) +++ PKGBUILD 2019-06-01 13:04:55 UTC (rev 354683) @@ -4,14 +4,14 @@ # Contributor: Juergen Hoetzel <[email protected]> pkgname=kismet -pkgver=2016_07_R1 +pkgver=2019_05_R2 _realver="${pkgver//_/-}" -pkgrel=2 +pkgrel=1 pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion detection system" arch=('x86_64') url="https://www.kismetwireless.net/" license=('GPL') -depends=('libpcap' 'pcre' 'bluez-libs' 'libcap') +depends=('libpcap' 'pcre' 'bluez-libs' 'libcap' 'libmicrohttpd' 'protobuf-c') optdepends=('gpsd: log coordinates of detected networks' 'wireshark-cli: provide OUI files used to determine device manufacturer' 'wireshark-cli: mergecap, to merge multiple capture files' @@ -22,23 +22,20 @@ backup=('etc/kismet.conf' 'etc/kismet_drone.conf') install=kismet.install source=("https://www.kismetwireless.net/code/${pkgname}-${_realver}.tar.xz") -sha256sums=('bdb21f153311f1ff3b16621bf0d6740f66369bf0982b0a289c9a12af8847e237') +sha256sums=('6821e5378f7d75394079c910b1ad49aeadc32507acc5fc85325a7794e0e85c1f') validpgpkeys=('354689DF3C9DED803381A661D7B28822738BBDB1') # Michael Kershaw build() { cd ${pkgname}-${_realver} - + export LDFLAGS='-Wl,--as-needed' ./configure --prefix=/usr \ --sysconfdir=/etc \ - --localstatedir=/var - make dep all plugins + --localstatedir=/var \ + --disable-python-tools + make all plugins } package() { cd ${pkgname}-${_realver} - make DESTDIR="$pkgdir" install plugins-install - install -o root -g 315 -m 4550 kismet_capture "${pkgdir}/usr/bin/" - - # the README is very comprehensive, a good idea to include it - install -Dm 644 README "$pkgdir/usr/share/doc/$pkgname/README" + make DESTDIR="$pkgdir" install }
