diff options
Diffstat (limited to 'repo/xipkg')
-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 } |