summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72cef34763ec95fb7adf529b883d144b312f9330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Mufeed Ali <lastweakness@tuta.io>
# Based on the git package by Manuel Palenzuela

author=eigenein
pkgname=python-pure-protobuf
_gitname=protobuf
pkgver=2.0.0
pkgrel=1
pkgdesc='Python implementation of Protocol Buffers data types with dataclasses support.'
url='https://github.com/VeNoMouS/cloudscraper.git'
arch=('any')
license=('MIT')
depends=('python')
makedepends=('git')
provides=('python-pure-protobuf')

source=("$pkgname-$pkgver.tar.gz::https://www.github.com/$author/$_gitname/archive/$pkgver.tar.gz")
sha256sums=('e1303e8ae29ce5e33254d49f93d896d04b040070f89e87232e33ecdfbb4ea6d9')

package() {
  cd "$_gitname-$pkgver"
  python setup.py install --root=$pkgdir
}