blob: 4e1ae1f157cb31f710a4df90e1eb606bd12f4aaf (
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
32
33
|
# Maintainer: DeadNews <deadnewsgit@gmail.com>
pkgbase="python-images-upload-cli"
pkgname=("python-images-upload-cli")
_name="images_upload_cli"
pkgver="3.0.4"
pkgrel=1
pkgdesc="Upload images via APIs"
url="https://github.com/DeadNews/images-upload-cli"
depends=(
"python"
"python-click"
"python-dotenv"
"python-httpx"
"python-loguru"
"python-pillow"
"python-pyperclip"
"python-rich"
)
makedepends=(
"python-installer"
)
optdepends=(
"libnotify: sending desktop notifications"
)
license=("MIT")
arch=("any")
source=("https://files.pythonhosted.org/packages/py3/${_name::1}/${_name}/${_name}-$pkgver-py3-none-any.whl")
sha256sums=('c974f9258be5bbf57af4dc7ddd2519739fc1fe0dadae9264e622d24ae7ce1a10')
package() {
python -m installer --destdir="${pkgdir}" "${_name}-$pkgver-py3-none-any.whl"
}
|