blob: 064aae48c97dfe3d93bb13066a25b091d854a878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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
}
|