mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 14:34:42 +01:00
44 lines
904 B
Bash
44 lines
904 B
Bash
# Maintainer: Trumpetrespas <email [at] trumpetrespas [dot] com>
|
|
_pkgname=todo-or-not
|
|
pkgname=python-todo-or-not
|
|
pkgver=0.14.7
|
|
pkgrel=2
|
|
epoch=
|
|
pkgdesc="A simple tool that checks your project for TODOs and FIXMEs"
|
|
arch=(any)
|
|
url="https://github.com/Start-Out/todo-or-not"
|
|
license=('GPL3')
|
|
groups=()
|
|
depends=(python python-typer python-tqdm python-ply)
|
|
makedepends=(python-build)
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("https://github.com/Start-Out/todo-or-not/archive/refs/tags/v${pkgver}.tar.gz")
|
|
noextract=()
|
|
sha256sums=('61e4030c547f28c5561084e8933e5b7e002109a0a1f06c92d004b3da84da3cdd')
|
|
validpgpkeys=()
|
|
|
|
prepare() {
|
|
cd "$_pkgname-$pkgver"
|
|
}
|
|
|
|
build() {
|
|
cd "$_pkgname-$pkgver"
|
|
python -m build
|
|
}
|
|
|
|
check() {
|
|
cd "$_pkgname-$pkgver"
|
|
}
|
|
|
|
package() {
|
|
cd "$_pkgname-$pkgver"
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|