mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 02:22:15 +08:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
# $Id: PKGBUILD 71724 2010-03-08 20:57:46Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Sergej Pupykin <sergej@aur.archlinux.org>
|
|
|
|
pkgname=man-db
|
|
pkgver=2.5.7
|
|
pkgrel=1
|
|
pkgdesc="A utility for reading man pages"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.nongnu.org/man-db/"
|
|
license=('GPL' 'LGPL')
|
|
groups=('base')
|
|
depends=( 'bash' 'gdbm' 'zlib' 'groff')
|
|
optdepends=('less' 'gzip')
|
|
backup=('etc/man_db.conf'
|
|
'etc/cron.daily/man-db')
|
|
conflicts=('man')
|
|
provides=('man')
|
|
replaces=('man')
|
|
install=${pkgname}.install
|
|
source=(http://savannah.nongnu.org/download/man-db/$pkgname-$pkgver.tar.gz
|
|
#http://launchpad.net/man-db/main/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz
|
|
convert-mans man-db.cron.daily)
|
|
md5sums=('eef0d8c8e54894e4e050e2176bb1d88d'
|
|
'2b7662a7d5b33fe91f9f3e034361a2f6'
|
|
'd30c39ae47560304471b5461719e0f03')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--with-db=gdbm --disable-setuid --enable-mandirs=GNU \
|
|
--with-sections="1 n l 8 3 0 2 5 4 9 6 7"
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
# part of groff pkg
|
|
rm -f ${pkgdir}/usr/bin/zsoelim
|
|
|
|
# script from LFS to convert manpages, see
|
|
# http://www.linuxfromscratch.org/lfs/view/6.4/chapter06/man-db.html
|
|
install -D -m755 ${srcdir}/convert-mans ${pkgdir}/usr/bin/convert-mans
|
|
|
|
#install whatis cron script
|
|
install -D -m744 ${srcdir}/man-db.cron.daily ${pkgdir}/etc/cron.daily/man-db
|
|
}
|
|
|