summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d5fc7cc49cd66b1edae5c2124b617f6193dc854d (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
# Maintainer: 0kalekale <kalekale.anon@gmail.com> - https://kalekale.ga

pkgname=python3-anilistpy
pkgver=0.1.0
pkgrel=2
pkgdesc="Easy to use python wrapper for anilist apiv2"
arch=('i686' 'x86_64')
url="https://github.com/anilistpy/anilistpy"
license=('AGPL3')
provides=('python3-anilistpy')
conflicts=('python3-anilistpy')
makedepends=('python' 'rust' 'python-pip')
source=('git+https://github.com/anilistpy/anilistpy.git')
md5sums=('SKIP')

prepare() {
  pip3 install setuptools wheel setuptools-rust requests
}

build() {
  cd anilistpy
}

package() {
  cd anilistpy
  python3 setup.py install --user
}