summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/netkit-bsd-finger/PKGBUILD
blob: 06a45cca3eb1e28a57f22ba9b302ab31caa517ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 35715 2009-04-16 03:28:17Z eric $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=netkit-bsd-finger
pkgver=0.17
pkgrel=4
pkgdesc="bsd-finger ported to Linux"
arch=('i686' 'x86_64')
url="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit"
license=('BSD')
depends=('glibc' 'xinetd')
backup=('etc/xinetd.d/finger')
source=(ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/bsd-finger-$pkgver.tar.gz finger.xinetd LICENSE)
md5sums=('52bf281aac8814bf56cdc92f7661ee75' 'a8682004dc8dee356065162bde892b47'\
         '5fc568418a0379fc3a358ed1c2523b44')

build() {
   cd $srcdir/bsd-finger-$pkgver
   install -d $pkgdir/usr/{bin,sbin} $pkgdir/usr/share/man/{man1,man8}
   ./configure --prefix=/usr || return 1
   sed -i 's@include <sys/time.h>@include <time.h>@' finger/lprint.c || return 1
   sed -i 's@include <sys/time.h>@include <time.h>@' finger/sprint.c || return 1
   make || return 1
   make INSTALLROOT=$pkgdir MANDIR=/usr/share/man install || return 1
   install -D -m644 $srcdir/finger.xinetd $pkgdir/etc/xinetd.d/finger || return 1
   install -D -m644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}