summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew-Flame2023-11-08 21:56:45 +0300
committerAndrew-Flame2023-11-08 21:56:45 +0300
commitc13eae7cbde8e24236ab2a3f5bfe0d3b205f9713 (patch)
tree46a62259b8dec19a781efcd9d68cc66272e7fe3b
parent5825229629a788d4e14ff4d72e0575de23a7d853 (diff)
downloadaur-c13eae7cbde8e24236ab2a3f5bfe0d3b205f9713.tar.gz
Fix depends
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 18e7750ae7f4..9b61f9179996 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = spwd
pkgdesc = Program for displaying the current working directory in the shell prompt
pkgver = 1.0.0
- pkgrel = 2
+ pkgrel = 3
epoch = 0
url = https://github.com/Andrew-Flame/spwd.git
install = spwd.install
arch = any
license = BSD-3
- depends = gcc
+ makedepends = gcc
source = https://github.com/Andrew-Flame/spwd/archive/refs/tags/v1.0.0.tar.gz
sha512sums = 50d91387050e18e36cefaabc9c33357a9e07706b80a93dec7245fd79ef2d9b3ec530a3c1f5ca5563734ba842b24bc4b77b7874c2bdda848be803beb14f6f0b69
diff --git a/PKGBUILD b/PKGBUILD
index 8402e4d36cf5..34577973e5cf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Evilur <andrewflame@mail.ru>
pkgname=spwd
pkgver=1.0.0
-pkgrel=2
+pkgrel=3
epoch=0
pkgdesc='Program for displaying the current working directory in the shell prompt'
arch=('any')
@@ -10,7 +10,7 @@ license=('BSD-3')
install='spwd.install'
source=("https://github.com/Andrew-Flame/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=('50d91387050e18e36cefaabc9c33357a9e07706b80a93dec7245fd79ef2d9b3ec530a3c1f5ca5563734ba842b24bc4b77b7874c2bdda848be803beb14f6f0b69')
-depends=('gcc')
+makedepends=('gcc')
prepare() {
tar -xf "v${pkgver}.tar.gz"
@@ -18,4 +18,4 @@ prepare() {
package() {
gcc "${pkgname}-${pkgver}/spwd.c" -o /tmp/spwd.bin
-} \ No newline at end of file
+}