2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Wireshark dünyanın önde gelen ve yaygın olarak kullanılan ağ protokol analizörüdür.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://www.wireshark.org
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: gtk3 libpcap pcre
|
2018-01-13 14:40:54 +01:00
|
|
|
|
# Grup : güvenlik
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=wireshark
|
2017-12-21 20:28:31 +01:00
|
|
|
|
surum=2.4.3
|
2017-10-28 14:10:23 +02:00
|
|
|
|
devir=1
|
2017-12-21 20:28:31 +01:00
|
|
|
|
kaynak=(http://www.$isim.org/download/src/$isim-$surum.tar.xz)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd $isim-$surum
|
2016-02-24 01:27:23 +01:00
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--mandir=/usr/man \
|
2017-10-28 14:10:23 +02:00
|
|
|
|
--with-plugins=/usr/lib/$isim/plugins \
|
2016-02-24 01:27:23 +01:00
|
|
|
|
--disable-nls \
|
|
|
|
|
--enable-snmp \
|
|
|
|
|
--disable-gcry \
|
|
|
|
|
--without-krb5 \
|
|
|
|
|
--with-qt4=no \
|
2017-12-23 11:52:07 +01:00
|
|
|
|
--with-gtk=3
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
|
|
make
|
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
|
|
chown -v root:wireshark $PKG/usr/bin/{tshark,dumpcap} &&
|
|
|
|
|
chmod -v 6550 $PKG/usr/bin/{tshark,dumpcap}
|
|
|
|
|
|
2017-12-23 12:40:06 +01:00
|
|
|
|
install -Dm755 $SRC/$isim-$surum/.libs/wireshark-gtk ${PKG}/usr/bin/wireshark-gtk
|
2016-02-24 01:27:23 +01:00
|
|
|
|
install -Dm644 wireshark-gtk.desktop ${PKG}/usr/share/applications/wireshark-gtk.desktop
|
|
|
|
|
}
|