initial commit
This commit is contained in:
25
PKGBUILD
Normal file
25
PKGBUILD
Normal 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')
|
||||
Reference in New Issue
Block a user