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/
5 # Contributor: Robson Peixoto <robsonpeixoto at gmail dot com>
6 # Contributor: Ray Kohler <ataraxia937 at gmail dot com>
9 pkgname=kernel-man-pages
12 pkgdesc="Kernel hackers manual - Section 9 manpages that come with the Linux kernel."
15 url="http://www.kernel.org/"
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')
23 cd ${srcdir}/linux-${pkgver}
28 install -d ${pkgdir}/usr/share/man/man9/
29 install ${srcdir}/linux-${pkgver}/Documentation/DocBook/man/*.9.gz \
30 ${pkgdir}/usr/share/man/man9/
32 find ${pkgdir} -type f -exec chmod 644 {} \;