From f4323e6ef501dadb2de36a8365bece8c2f14c1a4 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 13 Feb 2022 11:52:32 +0000 Subject: fixed wrong suffix for new xi packages --- repo/xi/xib.xibuild | 12 ++++++++++++ repo/xi/xib.xipkg | 12 ------------ repo/xi/xiutils.xibuild | 15 +++++++++++++++ repo/xi/xiutils.xipkg | 15 --------------- 4 files changed, 27 insertions(+), 27 deletions(-) create mode 100644 repo/xi/xib.xibuild delete mode 100644 repo/xi/xib.xipkg create mode 100644 repo/xi/xiutils.xibuild delete mode 100644 repo/xi/xiutils.xipkg (limited to 'repo/xi') diff --git a/repo/xi/xib.xibuild b/repo/xi/xib.xibuild new file mode 100644 index 0000000..7572f25 --- /dev/null +++ b/repo/xi/xib.xibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +MAKEDEPS=() +DEPS=(xichroot xiutils git tar unzip) + +SOURCE=https://git.davidovski.xyz/xilinux/xib.git +DESC="The XiBuild system" + +package () { + mkdir -pv $PKG_DEST/var/lib/xib + mv * $PKG_DEST/var/lib/xib/ +} diff --git a/repo/xi/xib.xipkg b/repo/xi/xib.xipkg deleted file mode 100644 index 7572f25..0000000 --- a/repo/xi/xib.xipkg +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -MAKEDEPS=() -DEPS=(xichroot xiutils git tar unzip) - -SOURCE=https://git.davidovski.xyz/xilinux/xib.git -DESC="The XiBuild system" - -package () { - mkdir -pv $PKG_DEST/var/lib/xib - mv * $PKG_DEST/var/lib/xib/ -} diff --git a/repo/xi/xiutils.xibuild b/repo/xi/xiutils.xibuild new file mode 100644 index 0000000..bcc0300 --- /dev/null +++ b/repo/xi/xiutils.xibuild @@ -0,0 +1,15 @@ +#!/bin/bash + +MAKEDEPS=(gcc) +DEPS=() + +SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git +DESC="Utilities required by various components of the xilinux system" + +build () { + make +} + +package () { + make DESTDIR=$PKG_DEST install +} diff --git a/repo/xi/xiutils.xipkg b/repo/xi/xiutils.xipkg deleted file mode 100644 index 1b71fde..0000000 --- a/repo/xi/xiutils.xipkg +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -MAKEDEPS=(gcc make) -DEPS=() - -SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git -DESC="Utilities required by various components of the xilinux system" - -build () { - make -} - -package () { - make DESTDIR=$PKG_DEST install -} -- cgit v1.2.1