2009-01-31 00:04:37 +01:00
|
|
|
# Description: daemon and tools to handle all ARP # aspects
|
2020-02-07 23:39:47 +11:00
|
|
|
# URL: https://github.com/dugsong/libdnet
|
2009-01-31 00:04:37 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2020-09-12 16:43:44 +00:00
|
|
|
# Depends on: libpcap, libnet
|
2009-01-31 00:04:37 +01:00
|
|
|
|
|
|
|
name=libdnet
|
2020-09-12 16:43:44 +00:00
|
|
|
version=1.14
|
2009-01-31 00:04:37 +01:00
|
|
|
release=1
|
2020-02-07 23:39:47 +11:00
|
|
|
source=(https://github.com/dugsong/$name/archive/$name-$version.tar.gz)
|
2009-01-31 00:04:37 +01:00
|
|
|
|
|
|
|
build() {
|
2020-02-07 23:39:47 +11:00
|
|
|
cd $name-$name-$version
|
2015-03-07 11:11:37 +01:00
|
|
|
|
|
|
|
# fix FS#1144
|
|
|
|
autoreconf -i -Iconfig
|
|
|
|
|
2018-11-25 20:11:29 +01:00
|
|
|
./configure --prefix=/usr
|
|
|
|
|
2009-01-31 00:04:37 +01:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
}
|