16 lines
442 B
Bash
16 lines
442 B
Bash
# Maintainer: Your Name <your.email@example.com>
|
|
|
|
pkgname=python-rofi
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="A package for using Rofi in Python." # replace with the package's description
|
|
arch=('any')
|
|
url="https://gitea.suda.codes/api/packages/sudacode/pypi/simple/"
|
|
license=('MIT') # replace with the package's license
|
|
depends=('python' 'python-pip')
|
|
|
|
package() {
|
|
python -m pip install --index-url "$url" --root="$pkgdir/" "$pkgname==$pkgver"
|
|
}
|
|
|