summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c8980dc3230b67d53305683b3358a7f16a564482 (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
_name=Telethon
pkgname=python-telethon
pkgver=1.15.0
pkgrel=1
pkgdesc="Full-featured Telegram client library for Python 3"
arch=(any)
url="https://github.com/LonamiWebs/Telethon"
license=('MIT')
depends=('python-pyaes' 'python-rsa')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/Telethon-1.15.0.tar.gz")
sha256sums=('3f4c1496353365100baf932736e537def0cff4eaf67b85944fb329b87c4be361')

build() {
  cd "$srcdir/Telethon-1.15.0"
  python3 setup.py build
}

package() {
  cd "$srcdir/Telethon-1.15.0"
  python3 setup.py install --root=$pkgdir --optimize=1 --skip-build
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"

  # make sure we don't install annoying files
  local _site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
  rm -rf "$pkgdir/$_site_packages/tests/"
}