#!/bin/sh NAME="bsd-utils" DESC="BSD coreutils is a port of many utilities from BSD to Linux and macOS." MAKEDEPS="cmake openssl" PKG_VER=master SOURCE="https://github.com/DiegoMagdaleno/BSDCoreUtils.git" build () { cmake -B build \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib \ -DBUILD_SHARED_LIBS=True \ -DBUILD_STATIC_LIBS=OFF cmake --build build } package () { DESTDIR="$PKG_DEST" cmake --install build }