summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2ce7192addc4ed431a5576ab058c08982820decb (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
# Maintainer: Stella <jens300304@gmail.com>
pkgname=python-circlecore
url="https://github.com/circleguard/circlecore"
pkgver=5.2.6
pkgrel=2
pkgdesc="A utilities library for osu!."
arch=('any')
license=('GPL3')
source=(
    "https://github.com/circleguard/circlecore/archive/refs/tags/v${pkgver}.tar.gz"
)
sha256sums=('def64dcb669a44654bcbfea3bfd69d85d2e187a65e6262328abfb3a922fdcd83')
depends=(
    'python'
    'python-slider>=0.5.1'
    'python-scipy'
    'python-requests'
    'python-numpy'
    'python-wtc=1.2.1'
    'python-ossapi>=2'
    'python-ossapi<3'
    'python-osrparse>=6'
)
makedepends=('python-setuptools')
conflicts=('python-circlecore-git')

build() {
    cd "$srcdir/circlecore-${pkgver}"
    # required due to conflict between this and python-osrparse. can't test anyways.
    rm -rf tests
    python setup.py build
}

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