initial commit

This commit is contained in:
ksyasuda
2022-10-21 23:45:43 -07:00
commit 9da2da2bf8
3 changed files with 42 additions and 0 deletions

25
PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Sudacode <the dot sudacode at gmail dot com>
_pkgname=python-rofi
pkgname="${_pkgname}-git"
_pkgver=1.1.0
pkgver=${_pkgver//-/_}
pkgrel=1
pkgdesc='Python wrapper for rofi'
license=('MIT')
makedepends=('python-wheel')
arch=('any')
url="https://gitea.suda.codes/sudacode/python-rofi.git"
provides=('python-rofi')
makedepends=('python-wheel' 'git')
source=("git+${url}")
build() {
cd "$srcdir/${_pkgname}"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgdir"
python -m installer --destdir="$pkgdir" "$srcdir/$_pkgname"/dist/*.whl
}
sha256sums=('SKIP')