diff options
Diffstat (limited to 'libre/linux-libre-manpages/PKGBUILD')
-rw-r--r-- | libre/linux-libre-manpages/PKGBUILD | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libre/linux-libre-manpages/PKGBUILD b/libre/linux-libre-manpages/PKGBUILD index 225b5aea4..62e95bd24 100644 --- a/libre/linux-libre-manpages/PKGBUILD +++ b/libre/linux-libre-manpages/PKGBUILD @@ -1,37 +1,37 @@ -# Maintainer: André Silva <emulatorman@hyperbola.info> +# $Id$ +# Maintainer (Arch): Tobias Powalowski <tpowa@archlinux.org> +# Maintainer (Arch): Thomas Baechler <thomas@archlinux.org> +# Contributor: André Silva <emulatorman@hyperbola.info> # Contributor: Luke Shumaker <lukeshu@sbcglobal.net> -# Based on linux-manpages package +# parabola changes and rationale (based on extra/linux-manpages): +# changed upstream source to linux-libre pkgname=linux-libre-manpages -_pkgver=4.14-gnu - -_srcname=linux-${_pkgver%-*} -_archpkgver=${_pkgver%-*} -pkgver=${_pkgver//-/_} +pkgver=4.10_gnu pkgrel=1 -pkgdesc="Kernel hackers manual - Section 9 manpages that comes with the Linux-libre kernel" +pkgdesc="Kernel hackers manual - Section 9 manpages that comes with the Linux-libre kernel." arch=('any') url="https://linux-libre.fsfla.org/" license=('GPL2') makedepends=('xmlto' 'docbook-xsl') -replaces=('linux-manpages') -conflicts=('linux-manpages') -provides=("linux-manpages=${_archpkgver}") -source=("https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgver}/linux-libre-${_pkgver}.tar.xz" - "https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgver}/linux-libre-${_pkgver}.tar.xz.sign") -sha256sums=('70f0098d823472402619a053211532423d15bfef628de7f49616014c81658278' +replaces=('linux-manpages' 'kernel26-manpages') +conflicts=('linux-manpages' 'kernel26-manpages') +provides=('linux-manpages' 'kernel26-manpages') +options=('!zipman') +source=("https://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver//_/-}/linux-libre-${pkgver//_/-}.tar.xz"{,.sign}) +sha256sums=('8a5e5d69a71480d90f9e8db9f8c6fdad71adb1e445b4d80eb81adf1de7fbff98' 'SKIP') validpgpkeys=('474402C8C582DAFBE389C427BCB7CF877E7D47A7') # Alexandre Oliva build() { - cd "${srcdir}/${_srcname}" + cd "${srcdir}/linux-${pkgver%_*}" make mandocs } package() { - cd "${srcdir}/${_srcname}" + cd "${srcdir}/linux-${pkgver%_*}" # fix install path sed -i -e "s:/usr/local/man/man9/:${pkgdir}/usr/share/man/man9/:g" Documentation/DocBook/Makefile make installmandocs |