summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7a670f13a1b48c28c1c3fcade2679a48d80ac6bc (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
# Maintainer: Goldy <goldy@devgoldy.xyz>
pkgname=python-devgoldyutils
pkgver="3.0.0"
pkgrel=1
pkgdesc="Goldy's small python util library."
arch=("x86_64" "i686")
url="https://github.com/THEGOLDENPRO/devgoldyutils"
license=("MIT")
makedepends=(
	"python-build" "python-setuptools-scm" "python-wheel"
)
depends=(
	"python"
)
checkdepends=()
provides=()
conflicts=()
md5sums=("SKIP")
source=(
	"https://github.com/THEGOLDENPRO/devgoldyutils/archive/refs/tags/$pkgver.zip"
)

build() {
	cd $srcdir/devgoldyutils-$pkgver
	python -m build --wheel --no-isolation
}

package() {
    cd devgoldyutils-$pkgver
    python -m installer --destdir="$pkgdir" dist/*.whl
}