diff options
Diffstat (limited to 'repo/xi')
-rw-r--r-- | repo/xi/sysconfigs.xibuild | 6 | ||||
-rw-r--r-- | repo/xi/xib.xibuild | 6 | ||||
-rw-r--r-- | repo/xi/xibuild.xibuild | 6 | ||||
-rw-r--r-- | repo/xi/xichroot.xipkg | 6 | ||||
-rw-r--r-- | repo/xi/xipkg.xibuild | 6 | ||||
-rw-r--r-- | repo/xi/xiutils.xibuild | 6 |
6 files changed, 18 insertions, 18 deletions
diff --git a/repo/xi/sysconfigs.xibuild b/repo/xi/sysconfigs.xibuild index aaa9ba1..a75655e 100644 --- a/repo/xi/sysconfigs.xibuild +++ b/repo/xi/sysconfigs.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=() -DEPS=(bootscripts sh) +MAKEDEPS="" +DEPS="bootscripts sh" PKG_VER=N/A DESC="Default system configs for xilinux" diff --git a/repo/xi/xib.xibuild b/repo/xi/xib.xibuild index 7572f25..3c1f877 100644 --- a/repo/xi/xib.xibuild +++ b/repo/xi/xib.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=() -DEPS=(xichroot xiutils git tar unzip) +MAKEDEPS="" +DEPS="xichroot xiutils git tar unzip" SOURCE=https://git.davidovski.xyz/xilinux/xib.git DESC="The XiBuild system" diff --git a/repo/xi/xibuild.xibuild b/repo/xi/xibuild.xibuild index 5f59513..7c5e321 100644 --- a/repo/xi/xibuild.xibuild +++ b/repo/xi/xibuild.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=() -DEPS=(bash tar git hg curl openssl ) +MAKEDEPS="" +DEPS="bash tar git hg curl openssl " SOURCE=https://git.davidovski.xyz/xilinux/xibuild.git DESC="The depricated xilinux build system, use XiB" diff --git a/repo/xi/xichroot.xipkg b/repo/xi/xichroot.xipkg index ce24739..e2ecbe8 100644 --- a/repo/xi/xichroot.xipkg +++ b/repo/xi/xichroot.xipkg @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=(bash) -DEPS=(bash) +MAKEDEPS="bash" +DEPS="bash" SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git DESC="A script to aid with chrooting on XiLinux" diff --git a/repo/xi/xipkg.xibuild b/repo/xi/xipkg.xibuild index afe0868..ed177a4 100644 --- a/repo/xi/xipkg.xibuild +++ b/repo/xi/xipkg.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=(make) -DEPS=(openssl curl dash xiutils findutils diffutils sed xichroot) +MAKEDEPS="make" +DEPS="openssl curl dash xiutils findutils diffutils sed xichroot" PKG_VER=1.0.1 SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git diff --git a/repo/xi/xiutils.xibuild b/repo/xi/xiutils.xibuild index 6c8faea..c3b9a10 100644 --- a/repo/xi/xiutils.xibuild +++ b/repo/xi/xiutils.xibuild @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/sh -MAKEDEPS=(gcc) -DEPS=(bash) +MAKEDEPS="gcc" +DEPS="bash" PKG_VER=1.0.1 SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git |