summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 970a26be772b5c180b2b2f78f1ec4d9fa7255a94 (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
47
48
49
50
51
52
53
# Maintainer:  dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: xiota (https://aur.archlinux.org/account/xiota)
# Contributor: j.r <j.r@jugendhacker.de>

_pkgname="python-telegram"
pkgname="$_pkgname"
pkgver=0.19.0
pkgrel=2
pkgdesc="Python API for the tdlib library"
url="https://github.com/alexander-akhmetov/python-telegram"
license=('MIT')
arch=('x86_64')

depends=(
  'gcc-libs'
  'glibc'
  'libcrypto.so=1.1' # openssl-1.1
  'libssl.so=1.1'    # openssl-1.1
  'python'
  'zlib'

  ## AUR
  'libtd'
  'python-telegram-text'
)
makedepends=(
  'git'
  'openssl-1.1'
  'python-build'
  'python-installer'
  'python-setuptools'
  'python-setuptools-scm>=6.2'
  'python-wheel'
)

conflicts=('python-telegram-bot')

_pkgsrc="$_pkgname-$pkgver"
_pkgext="tar.gz"
source=("$_pkgsrc.$_pkgext"::"$url/archive/$pkgver.$_pkgext")
sha256sums=('dbd7a1bf313465f5fdcfd774737b197fbc3836821a4e5c57bf3fc1528d9247e0')

build() {
  cd "$_pkgsrc"
  export SETUPTOOLS_SCM_PRETEND_VERSION="${pkgver}"
  python -m build --wheel --no-isolation
}

package() {
  cd "$_pkgsrc"
  python -m installer --destdir="$pkgdir" dist/*.whl
  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}