22 lines
526 B
Plaintext
22 lines
526 B
Plaintext
# Description: Tool that uses ARP to discover IP hosts on the local network
|
|
# URL: https://github.com/royhills/arp-scan
|
|
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
|
|
# Depends on: libpcap p5-lwp-protocol-https p5-http-message
|
|
|
|
name=arp-scan
|
|
version=1.9.7
|
|
release=1
|
|
source=(https://github.com/royhills/arp-scan/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
autoreconf -i
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=${PKG} install
|
|
|
|
#chmod 4755 ${PKG}/usr/bin/arp-scan
|
|
}
|