mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 22:44:04 +01:00
Initial commit
This commit is contained in:
commit
fffec19b15
2 changed files with 59 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = todo-or-not
|
||||
pkgdesc = a simple tool that checks your project for TODOs and FIXMEs
|
||||
pkgver = 0.10.15
|
||||
pkgrel = 1
|
||||
url = https://github.com/Start-Out/todo-or-not
|
||||
arch = any
|
||||
license = GPL3
|
||||
makedepends = python-poetry
|
||||
depends = python
|
||||
depends = python-typer
|
||||
depends = python-tqdm
|
||||
source = https://github.com/Start-Out/todo-or-not/archive/refs/tags/v0.10.15.tar.gz
|
||||
sha256sums = 3abd797c8589139407ee3ec3ce9a7bda8b56210eb6ef4b8c1a6ca95894d2eedd
|
||||
|
||||
pkgname = todo-or-not
|
||||
44
PKGBUILD
Normal file
44
PKGBUILD
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Maintainer: Trumpetrespas (Please comment on the package to contact me)
|
||||
pkgname=todo-or-not
|
||||
_name=${pkgname#-python}
|
||||
pkgver=0.10.15
|
||||
pkgrel=1
|
||||
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)
|
||||
makedepends=(python-poetry)
|
||||
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=(3abd797c8589139407ee3ec3ce9a7bda8b56210eb6ef4b8c1a6ca95894d2eedd)
|
||||
validpgpkeys=()
|
||||
|
||||
prepare() {
|
||||
cd "$pkgname-$pkgver"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
poetry build
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$pkgname-$pkgver"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
python -m installer --destdir="$pkgdir" dist/*.whl
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue