summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ccca671c05818a43b9d825a6122a7f49ce0357f5 (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.17.1
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.17.1.tar.gz")
sha256sums=('2d5f29ee0f0ea835ecc81407b8cd540760cbaabdead177f2891fff06eb234ff0')

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

package() {
  cd "$srcdir/Telethon-1.17.1"
  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/"
}