diff options
author | davidovski <david@davidovski.xyz> | 2022-02-13 11:52:32 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-13 11:52:32 +0000 |
commit | f4323e6ef501dadb2de36a8365bece8c2f14c1a4 (patch) | |
tree | 2d0734a7185990f814b4291ea0e8c921ef263446 /repo/xi/xiutils.xibuild | |
parent | 2d96a0809bed1a6c0d235790ae3a55476b89f736 (diff) |
fixed wrong suffix for new xi packages
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 +} |