Date: Thursday, March 23, 2023 @ 21:27:54
Author: antiz
Revision: 1427310
archrelease: copy trunk to community-testing-any
Added:
hyfetch/repos/community-testing-any/
hyfetch/repos/community-testing-any/PKGBUILD
(from rev 1427309, hyfetch/trunk/PKGBUILD)
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Copied: hyfetch/repos/community-testing-any/PKGBUILD (from rev 1427309,
hyfetch/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-03-23 21:27:54 UTC (rev 1427310)
@@ -0,0 +1,25 @@
+# Maintainer: Robin Candau <[email protected]>
+# Contributor: Aleksana QWQ <[email protected]>
+
+pkgname=hyfetch
+pkgver=1.4.7
+pkgrel=2
+pkgdesc="Neofetch with LGBTQ+ pride flags!"
+arch=('any')
+url='https://github.com/hykilpikonna/hyfetch'
+license=('MIT')
+depends=('python>=3.7.0' 'python-setuptools' 'python-typing_extensions'
'python-colorama' 'python-psutil' 'python-importlib-metadata')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('14c2f5674047350ef92a8d9c867403a4917c2218e7be01c35a8d5dff1c417ef8')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+
+ install -Dm 644 LICENSE.md
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}