From 8b9daf5a3523a637e5d16314f5a3cce441a85c7c Mon Sep 17 00:00:00 2001 From: Michel Blanc Date: Mon, 28 Apr 2014 10:34:56 +0200 Subject: [PATCH] Removes man3 section and adds contributor list Seems that there are no man for section 3 anymore. Removed install snippet from PKGBUILD. Added list of PKGBUILD contributors in header. --- packaging/arch/PKGBUILD | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index edca7aaecd..f4db6fbd7b 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,4 +1,12 @@ # Maintainer: Michel Blanc +# Contributor: Buce +# Contributor: Bartłomiej Piotrowski +# Contributor: cgtx +# Contributor: Daniel Wallace +# Contributor: John Gosset +# Contributor: Joshua Lund +# Contributor: Matt Klich +# Contributor: Michael DeHaan pkgname=ansible-git pkgver=1.1.4095.g3f2f5fe @@ -43,7 +51,6 @@ package() { install -Dm644 COPYING $pkgdir/usr/share/doc/ansible/COPYING install -Dm644 CHANGELOG.md $pkgdir/usr/share/doc/ansible/CHANGELOG.md - install -dm755 ${pkgdir}/usr/share/man/man{1,3} + install -dm755 ${pkgdir}/usr/share/man/man1 cp -dpr --no-preserve=ownership docs/man/man1/*.1 "$pkgdir/usr/share/man/man1" - cp -dpr --no-preserve=ownership docs/man/man3/*.3 "$pkgdir/usr/share/man/man3" }