First package version from AUR3
This commit is contained in:
commit
51a8364008
2 changed files with 62 additions and 0 deletions
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
pkgbase = python2-rarfile
|
||||||
|
pkgdesc = Rar archive reader for Python
|
||||||
|
pkgver = 2.7
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://pypi.python.org/pypi/rarfile
|
||||||
|
arch = any
|
||||||
|
license = custom:ISC
|
||||||
|
makedepends = python2
|
||||||
|
makedepends = python-docutils
|
||||||
|
makedepends = python2-sphinx
|
||||||
|
depends = python2
|
||||||
|
optdepends = unrar: Decompressing compressed files
|
||||||
|
optdepends = libarchive: Alternative to "unrar"
|
||||||
|
optdepends = python2-crypto: Parsing encrypted headers
|
||||||
|
provides = python-rarfile
|
||||||
|
source = https://pypi.python.org/packages/source/r/rarfile/rarfile-2.7.tar.gz
|
||||||
|
md5sums = d143205f22078830451e0066c123580d
|
||||||
|
|
||||||
|
pkgname = python2-rarfile
|
||||||
|
|
42
PKGBUILD
Normal file
42
PKGBUILD
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# 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/"
|
||||||
|
}
|
Loading…
Reference in a new issue