blob: c4ef076634b80deaea0f524ff5f1c061c84c37f1 (
plain)
1 # Description: Tool that uses ARP to discover IP hosts on the local network
2 # URL: https://github.com/royhills/arp-scan
3 # Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
4 # Depends on: libpcap p5-lwp-protocol-https p5-http-message
5
6 name=arp-scan
7 version=1.9.7
8 release=1
9 source=(https://github.com/royhills/arp-scan/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoreconf -i
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=${PKG} install
19
20 #chmod 4755 ${PKG}/usr/bin/arp-scan
21 }
|