diff options
Diffstat (limited to 'repo/xi/xiutils.xibuild')
-rw-r--r-- | repo/xi/xiutils.xibuild | 15 |
1 files changed, 15 insertions, 0 deletions
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 +} |