#!/bin/bash

DEPS=(curl libarchive jsoncpp libuv rhash)

SOURCE=https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1.tar.gz
DESC="A cross-platform open-source make system"

build () {
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install 
}