Commit | Line | Data |
---|---|---|
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 | ||
9 | pkgname=kernel-man-pages | |
10 | pkgver=2.6.32.3 | |
11 | pkgrel=1 | |
12 | pkgdesc="Kernel hackers manual - Section 9 manpages that come with the Linux kernel." | |
13 | arch=('any') | |
14 | license=('GPL') | |
15 | url="http://www.kernel.org/" | |
16 | groups=('base') | |
17 | makedepends=('docbook-xml' 'docbook-xsl' 'xmlto') | |
18 | conflicts=('kernel-manpages' 'kernel26-manpages') | |
19 | source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${pkgver}.tar.bz2) | |
20 | md5sums=('730045c2c7f7e6618db3c4d4d7094853') | |
21 | ||
22 | build() { | |
23 | cd ${srcdir}/linux-${pkgver} | |
24 | ||
25 | make mrproper | |
26 | make mandocs | |
27 | ||
28 | install -d ${pkgdir}/usr/share/man/man9/ | |
29 | install ${srcdir}/linux-${pkgver}/Documentation/DocBook/man/*.9.gz \ | |
30 | ${pkgdir}/usr/share/man/man9/ | |
31 | ||
32 | find ${pkgdir} -type f -exec chmod 644 {} \; | |
33 | ||
34 | } |