summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2c1c7b10c7569ee21568d1182a2f0d11d872c259 (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
_pkgname=asks
pkgname=python-asks
pkgver=1.3.10
pkgrel=1
pkgdesc="asks - async http"
arch=('any')
url="https://github.com/theelous3/asks"
license=('MIT')
depends=('python' 'python-multio' 'python-h11')
makedepends=('python-setuptools')
source=('https://pypi.python.org/packages/80/22/ef3bafc4d5b7b54cab7da1afd3e2cd73531dc546add635ff72e607058f0d/asks-1.3.10.tar.gz')
md5sums=('1ad73b73ee24ede7f818c9747dcbbb1d')

build() {
  cd "$srcdir/$_pkgname-$pkgver"
  LANG=en_US.UTF-8 python3 setup.py build
}

package() {
  cd "$srcdir/$_pkgname-$pkgver"
  LANG=en_US.UTF-8 python3 setup.py install --root=$pkgdir --optimize=1 --skip-build
}

# vim:set sw=2 et: