diff options
author | Michal Wojdyla | 2024-08-08 22:14:43 +0200 |
---|---|---|
committer | Michal Wojdyla | 2024-08-08 22:14:43 +0200 |
commit | 6ea8db2be60e2a0c49fa3567ba69470eccdbf09c (patch) | |
tree | ba90fad6eb1f3fcaa500ac0adf74b35419bd2ba0 | |
parent | 847be63a33a3a25a1cea6008342fc24d606ccdfd (diff) | |
download | aur-6ea8db2be60e2a0c49fa3567ba69470eccdbf09c.tar.gz |
fix namcap errors
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 7 insertions, 6 deletions
@@ -1,12 +1,13 @@ pkgbase = nfetch-git pkgdesc = Minimal Linux fetch utility written in nim pkgver = 2.r19.g2655d63 - pkgrel = 4 + pkgrel = 5 url = https://github.com/Infinitybeond1/nfetch-src arch = x86_64 - license = GPL3 + license = GPL-3.0-only makedepends = git makedepends = nimble + depends = gcc-libs depends = glibc provides = nfetch conflicts = nfetch @@ -1,4 +1,4 @@ -# Maintainer: Luis Martinez <luis dot martinez at disroot dot org> +# Contributor: Luis Martinez <luis dot martinez at disroot dot org> # Contributor: Fabio 'Lolix' Loli <lolix@disroot.org> # Contributor: Luke <Infinitybeond1@protonmail.com> @@ -6,11 +6,11 @@ pkgname=nfetch-git _pkg="${pkgname%-git}" pkgdesc="Minimal Linux fetch utility written in nim" pkgver=2.r19.g2655d63 -pkgrel=4 +pkgrel=5 arch=('x86_64') url="https://github.com/Infinitybeond1/nfetch-src" -license=('GPL3') -depends=('glibc') +license=('GPL-3.0-only') +depends=('gcc-libs' 'glibc') makedepends=('git' 'nimble') provides=("$_pkg") conflicts=("$_pkg") |