blob: df22cfc86697ca655ff708c49292039b8ab6f254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: thongor77 <magetriste@proton.me>
pkgname=nmlinux
pkgver=1.7.6
pkgrel=1
pkgdesc="A unified network toolkit for Linux and macOS — SSH, WinRM, topology, 29 modules"
arch=('any')
url="https://github.com/thongor77/nmlinux"
license=('GPL2')
depends=(
'python>=3.11'
'pyside6'
'python-ptyprocess'
'python-pyte'
'python-tftpy'
'networkmanager'
'iproute2'
'iputils'
)
optdepends=(
'nmap: Nmap page and Port Scanner SYN mode'
'whois: WHOIS lookup page'
'net-snmp: SNMP page (snmpwalk/snmpget)'
'bind: DNS lookup via dig'
'traceroute: Traceroute alternative (tracepath used by default)'
'python-hwdata: OUI vendor lookup in IP Scanner'
'nm-connection-editor: Edit connections from Connection Manager'
'samba: SMB/NFS browser — SMB share listing (smbclient)'
'nfs-utils: SMB/NFS browser — NFS export listing (showmount)'
'cifs-utils: SMB/NFS browser — mount SMB shares from the right-click menu'
'openssl: TLS Inspector certificate chain'
'avahi: Topology — mDNS device type detection (printers, phones, NAS…)'
)
makedepends=('python-build' 'python-installer' 'python-hatchling')
source=("https://github.com/thongor77/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('50ae0aeca72b1e42ee183a9e3bb1bdd50d8c0bba00a0df25b7dfd2d93d661da5')
build() {
cd "${pkgname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 data/nmlinux.desktop "${pkgdir}/usr/share/applications/nmlinux.desktop"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
|