commit
9219c4800f
3 changed files with 67 additions and 0 deletions
19
talimatname/genel/maclookup/talimat
Normal file
19
talimatname/genel/maclookup/talimat
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# Description: IEEE MA-L/OUI açık listesinden MAC adresi görüntüleme aracı.
|
||||||
|
# URL: https://github.com/paraxor/maclookup
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on:
|
||||||
|
|
||||||
|
name=maclookup
|
||||||
|
version=0.4
|
||||||
|
release=1
|
||||||
|
source=(https://github.com/paraxor/$name/archive/${version}.tar.gz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$SRC/$name-$version"
|
||||||
|
|
||||||
|
mkdir -p "$PKG/usr/share/$name"
|
||||||
|
|
||||||
|
install -Dm755 $name.sh "$PKG/usr/bin/$name"
|
||||||
|
|
||||||
|
sh $name.sh -u -f "$PKG/usr/share/$name/oui.txt"
|
||||||
|
}
|
27
talimatname/genel/maltego/talimat
Normal file
27
talimatname/genel/maltego/talimat
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# Description: DNS, Alan Adı, IP adresleri, web siteleri, kişiler vb. hakkında bilgi toplamak için açık kaynaklı bir istihbarat ve adli bilişim uygulaması.
|
||||||
|
# URL: http://www.paterva.com/web5
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on: giflib
|
||||||
|
|
||||||
|
name=maltego
|
||||||
|
version=4.0.11.9358
|
||||||
|
release=1
|
||||||
|
source=(https://www.paterva.com/malv4/community/MaltegoCE.v${version}.zip)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$SRC/MaltegoCommunity_4.0.11CE"
|
||||||
|
|
||||||
|
mkdir -p "$PKG/usr/bin"
|
||||||
|
mkdir -p "$PKG/usr/share/maltego"
|
||||||
|
mkdir -p "$PKG/usr/share/doc/maltego"
|
||||||
|
|
||||||
|
cp -aR * "$PKG/usr/share/maltego"
|
||||||
|
|
||||||
|
cat > "$PKG/usr/bin/maltego" << EOF
|
||||||
|
#!/bin/sh
|
||||||
|
cd /usr/share/maltego/bin
|
||||||
|
exec ./maltego "\$@"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod +x "$PKG/usr/bin/maltego"
|
||||||
|
}
|
21
talimatname/genel/meld/talimat
Normal file
21
talimatname/genel/meld/talimat
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Description: Farklılıkları tespit etme ve birleştirme aracı.
|
||||||
|
# URL: http://meldmerge.org/
|
||||||
|
# Packager: yakar (aydin@komutan.org)
|
||||||
|
# Depends on: python-gobject python-cairo gtksourceview3 gsettings-desktop-schemas dconf
|
||||||
|
|
||||||
|
name=meld
|
||||||
|
version=3.16.4
|
||||||
|
release=1
|
||||||
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p $PKG/opt/ $PKG/usr/bin/ $PKG/usr/share/applications/
|
||||||
|
cp -r $SRC/$name-$version $PKG/opt/
|
||||||
|
cd $PKG/opt/$name-$version
|
||||||
|
|
||||||
|
python setup.py build
|
||||||
|
|
||||||
|
cp $PKG/opt/$name-$version/build/share/applications/meld.desktop $PKG/usr/share/applications/
|
||||||
|
ln -s /opt/$name-$version/bin/$name $PKG/usr/bin/meld
|
||||||
|
#chmod +x "$PKG/usr/bin/$name"
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue