blob: 29100221a48b309fff8740d100a5ee25bd48095a (
plain)
1 # Description: daemon and tools to handle all ARP # aspects
2 # URL: https://github.com/dugsong/libdnet
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libpcap, libnet
5
6 name=libdnet
7 version=1.14
8 release=1
9 source=(https://github.com/dugsong/$name/archive/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$name-$version
13
14 # fix FS#1144
15 autoreconf -i -Iconfig
16
17 ./configure --prefix=/usr
18
19 make
20 make install DESTDIR=$PKG
21 }
|