mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:37:13 +08:00
28 lines
618 B
Bash
28 lines
618 B
Bash
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
|
|
pkgname=man-pages-de
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc="German Linux man pages"
|
|
arch=('any')
|
|
url="https://alioth.debian.org/projects/manpages-de/"
|
|
license=('GPL3')
|
|
depends=('man-db')
|
|
makedepends=('po4a')
|
|
options=('!emptydirs')
|
|
source=(http://manpages-de.alioth.debian.org/downloads/manpages-de-$pkgver.tar.bz2)
|
|
sha256sums=('1c76f1e7e299c0ef813d30c36540affd6b886f1d810c69d0679b0005756d9ff7')
|
|
|
|
build() {
|
|
cd ${srcdir}/manpages-de-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/manpages-de-$pkgver
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|