python-rofi-git/PKGBUILD

16 lines
442 B
Bash
Raw Normal View History

2023-07-18 13:23:56 -07:00
# Maintainer: Your Name <your.email@example.com>
pkgname=python-rofi
pkgver=1.2.0
2022-10-21 23:45:43 -07:00
pkgrel=1
2023-07-18 13:23:56 -07:00
pkgdesc="A package for using Rofi in Python." # replace with the package's description
2022-10-21 23:45:43 -07:00
arch=('any')
2023-07-18 13:23:56 -07:00
url="https://gitea.suda.codes/api/packages/sudacode/pypi/simple/"
license=('MIT') # replace with the package's license
depends=('python' 'python-pip')
2022-10-21 23:45:43 -07:00
package() {
2023-07-18 13:23:56 -07:00
python -m pip install --index-url "$url" --root="$pkgdir/" "$pkgname==$pkgver"
2022-10-21 23:45:43 -07:00
}
2023-07-18 13:23:56 -07:00