summaryrefslogtreecommitdiff
path: root/repo/util
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-20 21:37:51 +0000
committerdavidovski <david@davidovski.xyz>2022-01-20 21:37:51 +0000
commitdec952fe033386edc3eb34b0f17edde6683eae65 (patch)
tree7554d75f06558035eca8244e1681332dba7bcf0a /repo/util
parent834b40c1975a5181c03ab0768bc4e3acb3561a47 (diff)
added makedeps currently are just common buildtools
Diffstat (limited to 'repo/util')
-rw-r--r--repo/util/bash.xibuild1
-rw-r--r--repo/util/cpio.xibuild1
-rw-r--r--repo/util/curl.xibuild1
-rw-r--r--repo/util/diffutils.xibuild1
-rw-r--r--repo/util/dosfstools.xibuild1
-rw-r--r--repo/util/dracut.xibuild1
-rw-r--r--repo/util/e2fsprogs.xibuild1
-rw-r--r--repo/util/elfutils.xibuild1
-rw-r--r--repo/util/file.xibuild1
-rw-r--r--repo/util/gawk.xibuild1
-rw-r--r--repo/util/grep.xibuild1
-rw-r--r--repo/util/groff.xibuild1
-rw-r--r--repo/util/inetutils.xibuild1
-rw-r--r--repo/util/iproute2.xibuild1
-rw-r--r--repo/util/keyutils.xibuild1
-rw-r--r--repo/util/less.xibuild1
-rw-r--r--repo/util/make-ca.xibuild1
-rw-r--r--repo/util/man-db.xibuild1
-rw-r--r--repo/util/neofetch.xibuild1
-rw-r--r--repo/util/openssh.xibuild1
-rw-r--r--repo/util/procps-ng.xibuild1
-rw-r--r--repo/util/rsync.xibuild1
-rw-r--r--repo/util/util-linux.xibuild1
-rw-r--r--repo/util/vim.xibuild1
-rw-r--r--repo/util/which.xibuild1
25 files changed, 25 insertions, 0 deletions
diff --git a/repo/util/bash.xibuild b/repo/util/bash.xibuild
index 0288b77..97a553a 100644
--- a/repo/util/bash.xibuild
+++ b/repo/util/bash.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(readline glibc ncurses)
SOURCE=https://git.savannah.gnu.org/git/bash.git
diff --git a/repo/util/cpio.xibuild b/repo/util/cpio.xibuild
index 80307cf..b7e2855 100644
--- a/repo/util/cpio.xibuild
+++ b/repo/util/cpio.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc)
PKG_VER=2.13
diff --git a/repo/util/curl.xibuild b/repo/util/curl.xibuild
index a3ce1d8..0e6ce5a 100644
--- a/repo/util/curl.xibuild
+++ b/repo/util/curl.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(cacerts openssl zlib zstd libnghttp libpsl)
PKG_VER=7.80.0
diff --git a/repo/util/diffutils.xibuild b/repo/util/diffutils.xibuild
index c55449a..f1c5ee7 100644
--- a/repo/util/diffutils.xibuild
+++ b/repo/util/diffutils.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc bash)
PKG_VER=3.8
diff --git a/repo/util/dosfstools.xibuild b/repo/util/dosfstools.xibuild
index c84fc30..9c3a7ad 100644
--- a/repo/util/dosfstools.xibuild
+++ b/repo/util/dosfstools.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=()
PKG_VER=4.2
diff --git a/repo/util/dracut.xibuild b/repo/util/dracut.xibuild
index 12183ec..088e1be 100644
--- a/repo/util/dracut.xibuild
+++ b/repo/util/dracut.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=()
DESC="An initramfs infastructure aimin gto have as little possible hardcoded into the initramfs"
diff --git a/repo/util/e2fsprogs.xibuild b/repo/util/e2fsprogs.xibuild
index ee3b311..94ddc2b 100644
--- a/repo/util/e2fsprogs.xibuild
+++ b/repo/util/e2fsprogs.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(sh util-linux)
PKG_VER=1.46.4
diff --git a/repo/util/elfutils.xibuild b/repo/util/elfutils.xibuild
index 898736a..1b908c9 100644
--- a/repo/util/elfutils.xibuild
+++ b/repo/util/elfutils.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc)
SOURCE=https://sourceware.org/elfutils/ftp/elfutils-latest.tar.bz2
diff --git a/repo/util/file.xibuild b/repo/util/file.xibuild
index 9e55dc6..47b6bcc 100644
--- a/repo/util/file.xibuild
+++ b/repo/util/file.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc zlib xz bzip2)
PKG_VER=5.40
diff --git a/repo/util/gawk.xibuild b/repo/util/gawk.xibuild
index 7efbc0b..3edc70c 100644
--- a/repo/util/gawk.xibuild
+++ b/repo/util/gawk.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(sh glibc mpfr)
PKG_VER=5.1.0
diff --git a/repo/util/grep.xibuild b/repo/util/grep.xibuild
index ad7b9d4..2cd65ac 100644
--- a/repo/util/grep.xibuild
+++ b/repo/util/grep.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(grep make )
DEPS=(glibc pcre)
PKG_VER=3.7
diff --git a/repo/util/groff.xibuild b/repo/util/groff.xibuild
index 8dcbd33..4ecf3c2 100644
--- a/repo/util/groff.xibuild
+++ b/repo/util/groff.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(perl)
PKG_VER=1.22.4
diff --git a/repo/util/inetutils.xibuild b/repo/util/inetutils.xibuild
index a0c8ea8..cd1b9c4 100644
--- a/repo/util/inetutils.xibuild
+++ b/repo/util/inetutils.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(pam libcap readline ncurses libxcrypt)
PKG_VER=2.2
diff --git a/repo/util/iproute2.xibuild b/repo/util/iproute2.xibuild
index 96ec60b..9d2cf91 100644
--- a/repo/util/iproute2.xibuild
+++ b/repo/util/iproute2.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc iptables libelf)
SOURCE=https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
diff --git a/repo/util/keyutils.xibuild b/repo/util/keyutils.xibuild
index 0b0992f..e013399 100644
--- a/repo/util/keyutils.xibuild
+++ b/repo/util/keyutils.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc sh)
PKG_VER=1.6.3
diff --git a/repo/util/less.xibuild b/repo/util/less.xibuild
index 5396ef7..379cafd 100644
--- a/repo/util/less.xibuild
+++ b/repo/util/less.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc ncurses pcre)
PKG_VER=590
diff --git a/repo/util/make-ca.xibuild b/repo/util/make-ca.xibuild
index aaa71c1..a006240 100644
--- a/repo/util/make-ca.xibuild
+++ b/repo/util/make-ca.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(libp11-kit nss)
PKG_VER=1.7
diff --git a/repo/util/man-db.xibuild b/repo/util/man-db.xibuild
index 7f5d02c..299611c 100644
--- a/repo/util/man-db.xibuild
+++ b/repo/util/man-db.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(bash gdbm zlib groff libpipeline less)
PKG_VER=2.9.4
diff --git a/repo/util/neofetch.xibuild b/repo/util/neofetch.xibuild
index f476c0f..02c6376 100644
--- a/repo/util/neofetch.xibuild
+++ b/repo/util/neofetch.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(bash)
PKG_VER=3.7
diff --git a/repo/util/openssh.xibuild b/repo/util/openssh.xibuild
index a7e4b75..0f1d7f9 100644
--- a/repo/util/openssh.xibuild
+++ b/repo/util/openssh.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc krb5 openssl libedit ldns libxcrypt zlib pam)
PKG_VER=8.8p1
diff --git a/repo/util/procps-ng.xibuild b/repo/util/procps-ng.xibuild
index ae401a3..e0b31d8 100644
--- a/repo/util/procps-ng.xibuild
+++ b/repo/util/procps-ng.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc ncurses)
PKG_VER=3.3.17
diff --git a/repo/util/rsync.xibuild b/repo/util/rsync.xibuild
index e6ba587..33441fd 100644
--- a/repo/util/rsync.xibuild
+++ b/repo/util/rsync.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(sh)
PKG_VER=3.2.3
diff --git a/repo/util/util-linux.xibuild b/repo/util/util-linux.xibuild
index a723154..556a565 100644
--- a/repo/util/util-linux.xibuild
+++ b/repo/util/util-linux.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(shadow coreutils libcap libxcrypt readline)
PKG_VER=2.37.2
diff --git a/repo/util/vim.xibuild b/repo/util/vim.xibuild
index 31cd202..b3993cb 100644
--- a/repo/util/vim.xibuild
+++ b/repo/util/vim.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(gpm acl glibc libgcrypt pcre zlib)
SOURCE=https://github.com/vim/vim.git
diff --git a/repo/util/which.xibuild b/repo/util/which.xibuild
index 8a70016..2dd6a23 100644
--- a/repo/util/which.xibuild
+++ b/repo/util/which.xibuild
@@ -1,5 +1,6 @@
#!/bin/bash
+MAKEDEPS=(make )
DEPS=(glibc bash)
PKG_VER=2.21