mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
623 B
Bash
22 lines
623 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
|
||
|
pkgname=tldp-howtos-html
|
||
|
pkgver=20090225
|
||
|
pkgrel=1
|
||
|
pkgdesc="HOWTO's from tldp.org"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://tldp.org/"
|
||
|
license=("FDL")
|
||
|
depends=()
|
||
|
options=('docs')
|
||
|
source=(http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html/Linux-html-HOWTOs.tar.bz2)
|
||
|
md5sums=('2b3fcb5067cb3056cd4f3de5b9d6fb79')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src
|
||
|
mkdir -p $startdir/pkg/usr/share/doc/howto/html
|
||
|
cp -r ./HOWTO/* $startdir/pkg/usr/share/doc/howto/html/
|
||
|
}
|