Package Details: whsniff-git 1.1.r38.4894032-1

Git Clone URL: https://aur.archlinux.org/whsniff-git.git (read-only, click to copy)
Package Base: whsniff-git
Description: A command line utility that interfaces TI CC2531 USB dongle with Wireshark for capturing and displaying IEEE 802.15.4 traffic at 2.4 GHz.
Upstream URL: https://github.com/homewsn/whsniff
Licenses: GPL
Conflicts: whsniff
Provides: whsniff
Replaces: whsniff
Submitter: oxplot
Maintainer: oxplot
Last Packager: oxplot
Votes: 3
Popularity: 0.000000
First Submitted: 2022-07-07 15:06 (UTC)
Last Updated: 2022-07-07 15:06 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

pbasista commented on 2023-01-27 20:17 (UTC)

I have tried this package on aarch64 architecture and it was possible to build it normally. I have also tried to use it and it was possible to sniff Zigbee traffic correctly.

Therefore, I think that you can add aarch64 to the list of supported architectures.

dreieck commented on 2022-04-14 14:18 (UTC) (edited on 2022-04-14 14:22 (UTC) by dreieck)

Dear maintainer,

  • $url should be without the .git-suffix.
  • You download the latest git checkout, not a fixed version/ fixed commit, so the package must be named whsniff-git. Please rename it (i.e. create new and submit a merge request on the old), and add provides=("whsniff=${pkgver}), conflicts=('whsniff'), replaces=('whsniff<=1.1.r38').

Thanks for maintaining!

flacs commented on 2020-12-23 20:51 (UTC)

The PKGBUILD currently always builds the most recent commit, so whsniff-git would be a more appropriate name for this package.

LukyLX commented on 2019-04-16 19:14 (UTC)

Thanks, updated in 1.1.r10.920e107-2

deisi commented on 2019-04-15 18:58 (UTC)

I can confirm. This fixes it.

floitsch commented on 2019-04-13 02:44 (UTC) (edited on 2019-04-13 02:44 (UTC) by floitsch)

The PKGBUILD didn't work for me: error: failed to commit transaction (conflicting files) whsniff: /bin exists in filesystem (owned by filesystem) Errors occurred, no packages were upgraded.

I changed the prepare and package functions in the PKGBUILD as follows:

prepare() {
  cd "${srcdir}/${pkgname}"
}

package() {
  cd "${srcdir}/${pkgname}"
  make install PREFIX=${pkgdir} BINDIR=${pkgdir}/usr/bin
}