blob: 9f6b9933cb84594f125aa0ec260b10febb275839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=py-bandwidth-sdk
pkgver=1.10
pkgrel=1
pkgdesc="python helpers for using bandwidth.com API"
url="https://pypi.python.org/pypi/bandwidth-sdk/"
arch="noarch"
license="BSD"
depends="py-requests py-dateutil"
makedepends="python2-dev python3-dev py-setuptools"
install=""
subpackages="py2-bandwidth-sdk:py2 py3-bandwidth-sdk:py3"
source="bandwidth-sdk-$pkgver.tar.gz::https://github.com/Bandwidth/python-bandwidth/archive/$pkgver.tar.gz"
builddir="$srcdir/python-bandwidth-$pkgver"
build() {
cd "$_builddir"
python2 setup.py build
python3 setup.py build
}
package() {
mkdir -p "$pkgdir"
}
_py() {
local python="$1"
pkgdesc="$pkgdesc ${python#python}"
depends="$depends $python"
install_if="$pkgname=$pkgver-r$pkgrel $python"
cd "$builddir"
$python setup.py install --prefix=/usr --root="$subpkgdir"
}
py2() {
cd "$builddir"
_py python2
}
py3() {
cd "$builddir"
_py python3
}
sha512sums="f8350172af1614e924f264469f5dd246381efb3eae7a8d16f6fc3d4cf2526c74f4dd78f8e16379a898f6ddd2483d68bc170250a07ec1adadce8b50939b56b504 bandwidth-sdk-1.10.tar.gz"
|