#!/bin/sh MAKEDEPS="make gcc" DEPS="musl sh" PKG_VER=1.4.1 SOURCE=https://git.davidovski.xyz/xilinux/xiutils.git BRANCH="v$PKG_VER" DESC="Utilities required by various components of the xilinux system" build () { make } check () { make check } package () { make DESTDIR=$PKG_DEST install }