Date: Wednesday, August 21, 2019 @ 21:02:24 Author: anthraxx Revision: 360535
upgpkg: kismet 2019_08_R1-1 Modified: kismet/trunk/PKGBUILD ----------+ PKGBUILD | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-08-21 20:05:35 UTC (rev 360534) +++ PKGBUILD 2019-08-21 21:02:24 UTC (rev 360535) @@ -1,17 +1,17 @@ -# Maintainer: -# Contributor: Angel Velasquez <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Maintainer: Juergen Hoetzel <[email protected]> +# Contributor: Angel Velasquez <[email protected]> # Contributor: Jason Chu <[email protected]> -# Contributor: Juergen Hoetzel <[email protected]> pkgname=kismet -pkgver=2019_05_R2 +pkgver=2019_08_R1 _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' 'libmicrohttpd' 'protobuf-c') +depends=('libpcap' 'pcre' 'bluez-libs' 'libcap' 'libmicrohttpd' 'protobuf-c' 'sqlite') 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' @@ -19,25 +19,27 @@ 'festival: text-to-speech support' 'flite: alternative/lightweight text-to-speech support' 'ruby: ruby interface') -backup=('etc/kismet.conf' 'etc/kismet_drone.conf') +backup=('etc/kismet.conf') install=kismet.install source=("https://www.kismetwireless.net/code/${pkgname}-${_realver}.tar.xz") -sha256sums=('6821e5378f7d75394079c910b1ad49aeadc32507acc5fc85325a7794e0e85c1f') +sha256sums=('3a0bde964f34c5eceaa085b9f1dc4eb008a4ce3a38b68bec6d962d3404a0d96b') validpgpkeys=('354689DF3C9DED803381A661D7B28822738BBDB1') # Michael Kershaw build() { - cd ${pkgname}-${_realver} - export LDFLAGS='-Wl,--as-needed' - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-python-tools - make all plugins + cd ${pkgname}-${_realver} + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-python-tools + make all plugins } package() { - cd ${pkgname}-${_realver} - make DESTDIR="$pkgdir" install - # Makepkg strip bug #43600 - chmod u+w "${pkgdir}"/usr/bin/kismet* + cd ${pkgname}-${_realver} + make DESTDIR="$pkgdir" install + # Makepkg strip bug #43600 + chmod u+w "${pkgdir}"/usr/bin/kismet* } + +# vim: ts=2 sw=2 et:
