Search Criteria
Package Details: tcpview 3.1.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/tcpview.git (read-only, click to copy) |
---|---|
Package Base: | tcpview |
Description: | Graphical network connections viewer for Linux |
Upstream URL: | https://github.com/chipmunk-sm/tcpview |
Licenses: | GPL3 |
Submitter: | ragouel |
Maintainer: | None |
Last Packager: | ragouel |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2020-07-09 17:29 (UTC) |
Last Updated: | 2022-01-13 02:13 (UTC) |
Dependencies (3)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR) (make)
Latest Comments
ireneuszi83 commented on 2023-02-12 13:01 (UTC) (edited on 2023-02-12 13:04 (UTC) by ireneuszi83)
version 3.4 -----------PKGBUILD-----------------
Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=tcpview pkgver=3.4.0 pkgrel=1 pkgdesc='Graphical network connections viewer for Linux' arch=('x86_64') url='https://github.com/chipmunk-sm/tcpview' license=('GPL3') depends=('qt5-base' 'hicolor-icon-theme') makedepends=('qt5-base') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chipmunk-sm/tcpview/archive/${pkgver}.tar.gz") sha256sums=('540b1e004497fddb0bd0c05d7a690748837173f84422165abeaf6133149a39ec')
prepare() { cd "${pkgname}-${pkgver}" sed -i "21a#include <string>" source/cportservicenames.h }
build() { cd "${pkgname}-${pkgver}" rm -rf build mkdir build cd build qmake PREFIX=/usr .. make }
package() { cd "${pkgname}-${pkgver}/build" install -Dm755 tcpview "${pkgdir}/usr/bin/tcpview" install -Dm644 ../data/tcpview.desktop -t "${pkgdir}/usr/share/applications" install -Dm644 ../data/tcpview.svg -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps" }
vim:set ts=2 sw=2 et: