mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
646 B
Bash
26 lines
646 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=x-docs-pdf
|
|
pkgver=20090310
|
|
pkgrel=1
|
|
pkgdesc="X documentation"
|
|
arch=(i686 x86_64)
|
|
url="http://www.x.org/docs/"
|
|
license=('custom')
|
|
options=(docs)
|
|
source=('mirror.pl')
|
|
md5sums=('f73f543efce4178d3f9214a888e1da58')
|
|
|
|
build() {
|
|
mkdir -p $pkgdir/usr/share/doc/X11 $pkgdir/usr/share/licenses/x-docs-pdf $srcdir/X11
|
|
|
|
cd $srcdir/X11 && \
|
|
$srcdir/mirror.pl || return 1
|
|
|
|
cp -r $srcdir/X11 $pkgdir//usr/share/doc/ || return 1
|
|
|
|
cat <<EOF >$pkgdir/usr/share/licenses/x-docs-pdf/COPYRIGHT
|
|
See PDF's first pages for copyright notes.
|
|
EOF
|
|
}
|