mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
24 lines
662 B
Bash
24 lines
662 B
Bash
|
# $Id: PKGBUILD 1460 2009-08-22 09:53:12Z spupykin $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
|
||
|
|
||
|
pkgname=python-docs
|
||
|
pkgver=2.6.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Set of HTML documentation for python."
|
||
|
arch=('any')
|
||
|
url="http://docs.python.org/download.html"
|
||
|
license=('GPL')
|
||
|
depends=()
|
||
|
install=python-docs.install
|
||
|
options=('docs')
|
||
|
source=(http://docs.python.org/ftp/python/doc/current/python-$pkgver-docs-html.tar.bz2)
|
||
|
md5sums=('651221f0a1c2fe9e0b469e236afcde5d')
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $startdir
|
||
|
mkdir -p pkg/usr/share/doc/python/html
|
||
|
cp -rf src/python-$pkgver-docs-html/* pkg/usr/share/doc/python/html/
|
||
|
}
|