mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
26 lines
667 B
Bash
26 lines
667 B
Bash
|
# $Id$
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
||
|
|
||
|
pkgname=man-pages-it
|
||
|
pkgver=3.73
|
||
|
pkgrel=1
|
||
|
pkgdesc="Italian man pages"
|
||
|
arch=('any')
|
||
|
url="http://www.pluto.it/ildp/man/index.html"
|
||
|
license=('GPL')
|
||
|
depends=('man-pages')
|
||
|
options=('!emptydirs')
|
||
|
source=("ftp://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.xz")
|
||
|
md5sums=('cce23c3463ac0d3478b6a32f2ce950a1')
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
|
||
|
make MANDIR=${pkgdir}/usr/share/man/it
|
||
|
make MANDIR=${pkgdir}/usr/share/man/it install
|
||
|
|
||
|
# remove conflicts with other man pages
|
||
|
rm -f $pkgdir/usr/share/man/it/man5/passwd.5*
|
||
|
}
|