milis/talimatname/genel/t/theharvester/talimat

43 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Farklıık kaynaklarından e-posta hesapları ve alt alan adı toplamak için kullanılan araç.
# URL: http://www.edge-security.com/theHarvester.php
# Paketçi: yakar
# Gerekler: python-pip python python-setuptools
# Grup: ağ güvenlik
isim=theharvester
surum=3.0
devir=1
kaynak=(https://github.com/laramies/theHarvester/archive/v$surum.tar.gz::$isim-$surum.tar.gz)
derle() {
cd $SRC/theHarvester-$surum
sed -i 's|env python$|env python2|' theHarvester.py
mkdir -p "$PKG/usr/bin"
mkdir -p "$PKG/usr/share/theharvester"
install -Dm755 *.py "$PKG/usr/share/theharvester"
install -Dm644 -t "$PKG/usr/share/doc/theharvester" changelog.txt
install -Dm644 -t "$PKG/usr/share/licenses/theharvester" COPYING LICENSES
cp --no-preserve=ownership -a discovery lib *.txt \
"$PKG/usr/share/theharvester"
ln -s "/usr/share/theharvester/theHarvester.py" "$PKG/usr/bin/theharvester"
rm -rf "$PKG"/usr/share/doc
# desktop
mkdir -p "$PKG/usr/share/applications/"
cat > $PKG/usr/share/applications/$isim.desktop << BASLA
[Desktop Entry]
Name=theHarvester
Exec=sh -c "$isim;${SHELL:-bash}"
Terminal=true
Icon=$isim
Type=Application
Categories=Network;X-Komutan;
Version=1.0
BASLA
}