22 lines
464 B
Plaintext
22 lines
464 B
Plaintext
# Description: daemon and tools to handle all ARP # aspects
|
|
# URL: https://github.com/dugsong/libdnet
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: libpcap, libnet
|
|
|
|
name=libdnet
|
|
version=1.14
|
|
release=1
|
|
source=(https://github.com/dugsong/$name/archive/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$name-$version
|
|
|
|
# fix FS#1144
|
|
autoreconf -i -Iconfig
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|