# Contributor: Matt Smith # Maintainer: Matt Smith pkgname=py-boto _pkgname=boto pkgver=2.46.1 pkgrel=0 pkgdesc="An interface to infrastructural services offered by Amazon Web Services" url="http://docs.pythonboto.org/en/latest/index.html" arch="noarch" license="MIT" depends="python2" makedepends="python2-dev py-setuptools" install="" subpackages="$pkgname-doc" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver build() { cd "$builddir" python2 setup.py build || return 1 } package() { cd "$builddir" python2 setup.py install --root "$pkgdir" || return 1 } doc() { cd "$builddir" mkdir -p "$subpkgdir"/usr/share/doc/$pkgname install -Dm644 README.rst "$subpkgdir"/usr/share/doc/$pkgname/README # Note: The documentation in the 'docs' directory can only be generated # (via sphinx-build from the py-sphinx package) once this package has # been installed. Copying it off for the user. mkdir -p "$subpkgdir"/usr/share/doc/$pkgname/docs cp -R ./docs/* "$subpkgdir"/usr/share/doc/$pkgname/docs/ chmod -R 644 "$subpkgdir"/usr/share/doc/$pkgname/docs/ # Fix subdir perms find "$subpkgdir"/usr/share/doc/$pkgname/ -type d -exec chmod 755 '{}' \; } sha512sums="3c8d7edd912bacba14410d537eb1a51633c111662eb3292872862b2221a9a9e75bc03248e150ca02a416831e954ce0d2d8162dca51b13b625e2ae8326ebe8183 boto-2.46.1.tar.gz"