mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:37:13 +08:00
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
# $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
|
|
}
|