blob: a3e8670cb840826e22872b1b5d5c58ca66e82121 (
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
50
51
52
53
54
55
56
57
58
59
60
|
# Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
# Contributor: Po-An,Yang(Antonio) <yanganto gmail.com>
# Todo: If there'a any files left in the cache they should probably be deleted on uninstall
#
# Yes, we need to figure where is the cache, but I am not using this package recently.
# I just pack and run it, and to check the package is good for use.
# If you have and an idea to do this, please kindly do it.
# Thanks.
# Antonio
# Todo: Can we build the source code?
# It is cool. :)
# Antonio
set -u
pkgname='networkminer'
pkgver=2.7
pkgrel='1'
pkgdesc='A Network Forensic Analysis Tool for advanced Network Traffic Analysis, sniffer and packet analyzer'
arch=('any')
url='http://www.netresec.com/'
license=('GPL2')
depends=('mono')
_verwatch=('http://www.netresec.com/?page=NetworkMiner' '\s\+<[nt][a-z]\+>NetworkMiner\s\([0-9][^<]\+\)</[a-z]\+>.*' 'f')
_srcname="NetworkMiner_${pkgver//\./-}-${pkgrel}"
source=("${_srcname}.zip::https://www.netresec.com/?download=NetworkMiner")
sha256sums=('df4057eb0256dab23dee9c248d60db11d46b20d344d8769ca0e5768afd76dd3f')
package() {
set -u
install -d "${pkgdir}/opt/"
mv "${srcdir}/${_srcname}" "${pkgdir}/opt/NetworkMiner"
#chmod +x "${pkgdir}/opt/NetworkMiner/NetworkMiner.exe"
chmod -R go+w "${pkgdir}/opt/NetworkMiner/AssembledFiles/" "${pkgdir}/opt/NetworkMiner/Captures/"
# Launcher
install -Dm755 <(cat << EOF
#!/bin/sh
mono /opt/NetworkMiner/NetworkMiner.exe
EOF
) "${pkgdir}/usr/bin/Networkminer.sh"
# Desktop file for config tool
install -Dm644 <(cat << EOF
[Desktop Entry]
Name=Network Miner
GenericName=Packet analyser
Comment=NetworkMiner packet analyser
Exec=Networkminer.sh
Terminal=false
Type=Application
#Icon=
Categories=Application;Utility;
MimeType=application/x-executable
EOF
) "${pkgdir}/usr/share/applications/NetworkMiner.desktop"
set +u
}
set +u
|