archlinux-pkgbuilds/PKGBUILD

43 lines
1.2 KiB
Bash
Raw Normal View History

2015-08-26 12:20:07 +02:00
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
_proj=rarfile
_python=python2 _pyver=2
#_python=python3 _pyver=""
pkgname="$_python-$_proj"
pkgver=2.7
pkgrel=1
pkgdesc="Rar archive reader for Python"
arch=(any)
url="https://pypi.python.org/pypi/$_proj"
license=(custom:ISC)
makedepends=("python$_pyver")
# These only required to build the documentation:
makedepends+=(python-docutils "python$_pyver-sphinx")
depends=("python$_pyver")
optdepends=(
"unrar: Decompressing compressed files"
'libarchive: Alternative to "unrar"'
"python$_pyver-crypto: Parsing encrypted headers"
)
provides=("python-$_proj")
source=(
"https://pypi.python.org/packages/source/r/$_proj/$_proj-$pkgver.tar.gz"
)
md5sums=(d143205f22078830451e0066c123580d)
build() {
cd "$srcdir/$_proj-$pkgver"
"$_python" setup.py build
make html SPHINXBUILD="sphinx-build$_pyver" BUILDDIR="_build-$pkgname"
}
package() {
cd "$srcdir/$_proj-$pkgver"
"$_python" setup.py install --root="$pkgdir" --optimize=1
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -D -m644 README.html "$pkgdir/usr/share/doc/$pkgname/README.html"
cp -a "doc/_build-$pkgname/html" "$pkgdir/usr/share/doc/$pkgname/"
}