Date: Saturday, April 8, 2023 @ 03:34:16
Author: felixonmars
Revision: 1441631
archrelease: copy trunk to community-staging-any
Added:
termdown/repos/community-staging-any/
termdown/repos/community-staging-any/PKGBUILD
(from rev 1441627, termdown/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: termdown/repos/community-staging-any/PKGBUILD (from rev 1441627,
termdown/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-08 03:34:16 UTC (rev 1441631)
@@ -0,0 +1,26 @@
+# Maintainer: Daniel M. Capella <[email protected]>
+
+pkgname=termdown
+pkgver=1.18.0
+pkgrel=4
+pkgdesc='Countdown timer and stopwatch in your terminal'
+arch=('any')
+url=https://github.com/trehn/termdown
+license=('GPL3')
+depends=('python-click' 'python-dateutil' 'python-pyfiglet')
+makedepends=('python-build' 'python-installer' 'python-setuptools'
+ 'python-wheel')
+optdepends=('espeak-ng: for spoken countdown')
+source=("https://files.pythonhosted.org/packages/source/t/termdown/termdown-$pkgver.tar.gz")
+sha256sums=('9165df7afd74a442432ba1755c6da3e017801995cf0a17f794295fcb2fd6dd1e')
+b2sums=('6a04dba81de96bb7197c68ac0cea981b19f8ba5e0be683d2f748df9289dba85ef2394648e8a0cfd593c93567d4e182d148d967f7944c44743fa8e809c94525e7')
+
+build() {
+ cd termdown-$pkgver
+ python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+package() {
+ cd termdown-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}