summaryrefslogtreecommitdiff
path: root/repo/devel/cmake.xibuild
blob: 1b9959ec487e030e048ab180a00a8f025cedb4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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 
}