mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
638 B
Bash
22 lines
638 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: tardo <tardo@nagi-fanboi.net>
|
|
# Contributor: Rohan Dhruva (rohandhruva at gmail dot com)
|
|
|
|
pkgname=php-docs
|
|
pkgver=5.2.9
|
|
pkgrel=1
|
|
pkgdesc="Set of HTML documentation for PHP."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.php.net/docs.php"
|
|
license=('PHP')
|
|
depends=('php')
|
|
options=('docs')
|
|
source=(http://www.php.net/distributions/manual/php_manual_en.tar.gz)
|
|
md5sums=('03dbec3a033fd1c630076eb3bc001ef5')
|
|
|
|
build(){
|
|
cd $startdir
|
|
install -d $pkgdir/usr/share/doc/php/
|
|
cp -rf src/html $pkgdir/usr/share/doc/php/ || return 1
|
|
}
|