contrib/arpwatch/Pkgfile

28 lines
741 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Monitors MAC Adresses on your network.
2021-02-24 11:47:23 +01:00
# URL: https://ee.lbl.gov/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libpcap
2006-11-14 00:01:22 +01:00
name=arpwatch
2020-07-01 15:40:50 +02:00
version=3.1
2006-11-14 00:01:22 +01:00
release=1
2020-07-01 15:40:50 +02:00
source=(https://ee.lbl.gov/downloads/$name/$name-$version.tar.gz)
2006-11-14 00:01:22 +01:00
build() {
2020-05-25 17:39:11 +02:00
cd $name-$version
2017-08-21 00:09:39 +02:00
2020-05-25 17:39:11 +02:00
# https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/arpwatch
sed -i 's|ARPDIR = $(prefix)/arpwatch|ARPDIR = /var/lib/arpwatch|' Makefile.in
sed -i 's/-\(o\|g\) bin/-\1 root/g' Makefile.in
2017-08-21 00:09:39 +02:00
2020-05-25 17:39:11 +02:00
./configure --prefix=/usr \
--sbindir=/usr/bin \
--mandir=/usr/share/man
2017-08-21 00:09:39 +02:00
2020-07-01 15:40:50 +02:00
install -d $PKG/usr/{bin,share/man/man8,sbin,etc/rc.d}
2020-05-25 17:39:11 +02:00
make SENDMAIL=/usr/bin/sendmail
make DESTDIR=$PKG install
2020-07-01 15:40:50 +02:00
rm -r $PKG/usr/etc
2006-11-14 00:01:22 +01:00
}