25 lines
511 B
Plaintext
25 lines
511 B
Plaintext
# Description: daemon and tools to handle all ARP aspects
|
|
# URL: http://arpon.sf.net
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: libdnet
|
|
|
|
name=arpon
|
|
version=3.0-ng
|
|
release=1
|
|
source=(http://download.sourceforge.net/$name/ArpON-$version.tar.gz \
|
|
arpon)
|
|
|
|
build() {
|
|
install arpon -D $PKG/etc/rc.d/arpon
|
|
cd ArpON-$version
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
}
|