diff options
author | davidovski <david@davidovski.xyz> | 2022-08-10 09:16:34 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-08-10 09:16:34 +0100 |
commit | c1d3da9ca87c414100b1cb969e36b8d7d05b9a74 (patch) | |
tree | 1cd983a42e1a221991d09783e08c6c162d4be5cf /repo/xipkg/xipkg.xibuild | |
parent | 9a26d3fdc7fca2df6f824b56034ab9a823e898d8 (diff) |
added ovmf, lolcat, spice, and squashfstools
Diffstat (limited to 'repo/xipkg/xipkg.xibuild')
-rw-r--r-- | repo/xipkg/xipkg.xibuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/repo/xipkg/xipkg.xibuild b/repo/xipkg/xipkg.xibuild index 712e0c4..e9f0fd3 100644 --- a/repo/xipkg/xipkg.xibuild +++ b/repo/xipkg/xipkg.xibuild @@ -1,18 +1,14 @@ #!/bin/sh -MAKEDEPS="make" -DEPS="openssl curl dash xiutils findutils diffutils sed xichroot grep base64 sort hbar parseconf xiutils" +MAKEDEPS="make shmk" +DEPS="openssl curl dash findutils diffutils sed xichroot grep base64 sort hbar parseconf xiutils" -PKG_VER=1.6 +PKG_VER=1.7.3 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 + make PREFIX=/usr DESTDIR=$PKG_DEST install } |