summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNara Díaz Viñolas2023-09-17 19:45:16 +0200
committerNara Díaz Viñolas2023-09-17 19:45:16 +0200
commit92842521ac7e8741758cd677938c6f8605218f50 (patch)
tree979707d29f718c61bfd920ecf69a538914929db4
parent3121bd4ba58c713a16f7e123d9de538598412844 (diff)
downloadaur-92842521ac7e8741758cd677938c6f8605218f50.tar.gz
Fix missing git dependency for chroot construction
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD2
2 files changed, 2 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f8851a0ff4c8..ea36be8caf4e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -5,6 +5,7 @@ pkgbase = pixiecore-git
url = https://godoc.org/go.universe.tf/netboot/pixiecore
arch = any
license = Apache
+ makedepends = git
makedepends = go
makedepends = gcc
makedepends = binutils
diff --git a/PKGBUILD b/PKGBUILD
index d8d9a537fde7..7e3be82bb4a1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ pkgdesc="An all-in-one tool for easy netbooting"
arch=('any')
url="https://godoc.org/go.universe.tf/netboot/pixiecore"
license=('Apache')
-makedepends=('go' 'gcc' 'binutils')
+makedepends=('git' 'go' 'gcc' 'binutils')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${_pkgname}::git+https://github.com/danderson/netboot.git")