diff options
Diffstat (limited to 'repo/xi/xipkg')
-rw-r--r-- | repo/xi/xipkg/xipkg.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/xi/xipkg/xipkg.xibuild b/repo/xi/xipkg/xipkg.xibuild new file mode 100644 index 0000000..be1e45f --- /dev/null +++ b/repo/xi/xipkg/xipkg.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +MAKEDEPS="make" +DEPS="openssl curl dash xiutils findutils diffutils sed xichroot grep base64 sort" + +PKG_VER=1.3.1 +SOURCE=https://git.davidovski.xyz/xilinux/xipkg.git +BRANCH="v$PKG_VER" + +DESC="The xilinux package manager" + +build () { + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |