mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
694 B
Bash
25 lines
694 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
|
|
|
pkgname=man-pages-it
|
|
pkgver=2.80
|
|
pkgrel=2
|
|
pkgdesc="Italian man pages"
|
|
arch=('i686' 'x86_64')
|
|
url="http://it.tldp.org"
|
|
license=('GPL')
|
|
depends=('man')
|
|
options=('!emptydirs')
|
|
source=(http://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('d6edbaf893507f80199f35df9c268aa0')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}-${pkgver}
|
|
make MANDIR=$startdir/pkg/usr/share/man/it
|
|
make MANDIR=$startdir/pkg/usr/share/man/it install
|
|
|
|
# remove conflicts with other man pages
|
|
rm -f $pkgdir/usr/share/man/it/man5/passwd.5*
|
|
}
|
|
|