diff options
author | Dimitris Kiziridis | 2020-07-09 20:29:00 +0300 |
---|---|---|
committer | Dimitris Kiziridis | 2020-07-09 20:29:00 +0300 |
commit | 8c76281acb47b4e4f222139c5de7d796d233ce00 (patch) | |
tree | 58755a90ffb64b489761e48816eb45fe5002e39b | |
download | aur-8c76281acb47b4e4f222139c5de7d796d233ce00.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 37 |
2 files changed, 53 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..a243a1c8afb2 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = tcpview + pkgdesc = Graphical network connections viewer for Linux + pkgver = 2.0.0.10 + pkgrel = 1 + url = https://github.com/chipmunk-sm/tcpview + arch = x86_64 + license = GPL3 + makedepends = qt5-base + depends = qt5-base + depends = hicolor-icon-theme + depends = whois + source = tcpview-2.0.0.10.tar.xz::https://github.com/chipmunk-sm/tcpview/archive/2.0.0.10.tar.gz + sha256sums = ffc2c5e2aaea1780af263028242f763d02fafc9efa7fe9df9d101eb3470a5653 + +pkgname = tcpview + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..dab58a9f97b9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com> + +pkgname=tcpview +pkgver=2.0.0.10 +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' 'whois') +makedepends=('qt5-base') +source=("${pkgname}-${pkgver}.tar.xz::https://github.com/chipmunk-sm/tcpview/archive/${pkgver}.tar.gz") +sha256sums=('ffc2c5e2aaea1780af263028242f763d02fafc9efa7fe9df9d101eb3470a5653') + +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" + install -Dm644 ../data/tcpviewb.svg -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps" + install -Dm644 ../data/tcpvieww.svg -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps" +} +# vim:set ts=2 sw=2 et:
\ No newline at end of file |