contrib/arpwatch/Pkgfile

30 lines
866 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Monitors MAC Adresses on your network.
2020-06-01 17:45:48 +02:00
# URL: https://ee.lbl.gov/
2008-03-05 23:38:56 +01:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2007-01-20 03:21:06 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2006-11-19 22:26:53 +01:00
# Depends on: libpcap
2006-11-14 00:01:22 +01:00
name=arpwatch
2020-05-25 17:39:11 +02:00
version=2.1a15
2006-11-14 00:01:22 +01:00
release=1
2020-05-25 17:39:11 +02:00
source=(ftp://ftp.ee.lbl.gov/$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-05-25 17:39:11 +02:00
install -d $PKG/usr/{bin,share/man/man8,sbin}
# prepend DESTDIR to some paths
#sed -i '123,126{s/\$(/$(DESTDIR)$(/2}' Makefile
make SENDMAIL=/usr/bin/sendmail
make DESTDIR=$PKG install
2006-11-14 00:01:22 +01:00
}