mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 09:41:39 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-praw
|
|
_pkgname=praw
|
|
pkgver=2.1.21
|
|
pkgrel=0
|
|
pkgdesc="A Python module to access to reddit's API"
|
|
url="https://github.com/praw-dev/praw"
|
|
arch="noarch"
|
|
license="GPL3+"
|
|
depends="python py-update-checker py-requests py-six"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="3b0388c9105662f8be8f1a4d3a38216d praw-2.1.21.tar.gz"
|
|
sha256sums="cba56095a1dd9cdc6604a119d7433a30bc434b54d635997b24c6e03d7800d80b praw-2.1.21.tar.gz"
|
|
sha512sums="0e0d801d04ca47721ba5da8a07ee153898e2af3833c7164fb151d80c384d9bd86f522af53e15a346920478e83b1bd234d5cc2a5d31ad550f727008cc1acd7f98 praw-2.1.21.tar.gz"
|