summaryrefslogtreecommitdiff
path: root/extra/netkit-bsd-finger/PKGBUILD
blob: ea19879857389b06a0aec8753e8b7eb72cb3c2aa (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 78053 2010-04-19 08:47:06Z dgriffiths $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=netkit-bsd-finger
pkgver=0.17
pkgrel=5
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
}