csync-git
[mirrors/ArchLinux-Packages.git] / kernel-man-pages / PKGBUILD
CommitLineData
209feeb0
H
1# Contributor: Thomas Mudrunka <harvie@@email..cz>
2# Maintainer: Thomas Mudrunka <harvie@@email..cz>
3# You can also contact me on http://blog.harvie.cz/
4
5# Contributor: Robson Peixoto <robsonpeixoto at gmail dot com>
6# Contributor: Ray Kohler <ataraxia937 at gmail dot com>
7# Category: system
8
9pkgname=kernel-man-pages
10pkgver=2.6.32.3
11pkgrel=1
12pkgdesc="Kernel hackers manual - Section 9 manpages that come with the Linux kernel."
13arch=('any')
14license=('GPL')
15url="http://www.kernel.org/"
16groups=('base')
17makedepends=('docbook-xml' 'docbook-xsl' 'xmlto')
18conflicts=('kernel-manpages' 'kernel26-manpages')
19source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${pkgver}.tar.bz2)
20md5sums=('730045c2c7f7e6618db3c4d4d7094853')
21
22build() {
23cd ${srcdir}/linux-${pkgver}
24
25make mrproper
26make mandocs
27
28install -d ${pkgdir}/usr/share/man/man9/
29install ${srcdir}/linux-${pkgver}/Documentation/DocBook/man/*.9.gz \
30${pkgdir}/usr/share/man/man9/
31
32find ${pkgdir} -type f -exec chmod 644 {} \;
33
34}
This page took 0.138339 seconds and 4 git commands to generate.